-
Notifications
You must be signed in to change notification settings - Fork 1
Home
Hisham Bin Ateya edited this page Nov 27, 2016
·
1 revision
To use this repository, simply checkout the following steps:
- Step 1: git clone https://github.com/ydevclub/Honeydew.git
- Step 2: cd Honeydew
- Step 3: open the solution file
Honeydew.sln
using Visual Studio.NET 2015
To author and create your user control, please submit an issue describing the idea behind your user control what it does? What the properties and events that expose? get the feedback and start coding using our naming conventions. Please checkout the following steps to guide you to accomplish this task:
- Step 0: Add a new tab named
Honeydew
in your Toolbox window, after that click "Choose Items" menu item, then click "Browse" button to selectHoneydew.dll
which located inHoneydew\Honeydew\bin\Debug
- Step 1: Create your user control by adding a User Control named UserControl to the
Honeydew
project - Step 2: Build the
Honeydew
project - Step 3: Add a test form in the
Honeydew.Tests
named frmUserControlTest - Step 4: Drag your user control UserControl from the
Honeydew
to the frmUserControlTest and your free to use it!! - Step 5: Add an instance of your test form frmUserControlTest that you already created in the Step 3 into the
Main
function inProgram.cs
as the following:
Application.Run(frmUserControlTest());