CM3D2.MaidFiddler.Plugin.Gui.MaidFiddlerGUI.InitControl(System.Windows.Forms.Control)

Here are the examples of the csharp api class CM3D2.MaidFiddler.Plugin.Gui.MaidFiddlerGUI.InitControl(System.Windows.Forms.Control) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

2 Examples 7

1. Example

Project: CM3D2.MaidFiddler
Source File: MaidFiddlerGUI.Controls.cs
private void InitField(Label label, Control control, MaidChangeType type)
        {
            if (label != null)
                Translation.AddTranslatableControl(label);
            if (control is CheckBox)
                Translation.AddTranslatableControl(control);
            uiControls.Add(control, type);

            InitControl(control);
        }

2. Example

Project: CM3D2.MaidFiddler
Source File: MaidFiddlerGUI.Controls.cs
private void InitField(Label label, Control control, PlayerChangeType type)
        {
            if (label != null)
                Translation.AddTranslatableControl(label);
            if (control is CheckBox)
                Translation.AddTranslatableControl(control);
            uiControlsPlayer.Add(control, type);

            InitControl(control);
        }