|
|
|
|
|
- Overview
- Using the properties of the control
- Managing the delegates
Manipulating WinForm .Net controls programmatically
WINDEV allows you to manipulate a DotNet field (WinForm) by programming. To do so, use the control variable in the code. The variable of the .Net control (WinForm) corresponds to the name of the .Net control (WinForm). Using the properties of the control When the .Net control (WinForm) is created, the code editor proposes the completion on all the properties of the control supplied by the assembly.
DOTNET_Bouton_NEt1.Text = "Bouton .NET"
DOTNET_Bouton_NEt1.BackColor = Color.FromArgb(111,87,235)
To call a procedure from the .NET control, use DotNetDelegate.
DOTNET_Bouton_NEt1.add_Click(DotNetDelegate(CallbackWinDev,"System.EventHandler"))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|