Implemented interface member:
method
CreateControl<TControl>
DesignSurfaceExt.IDesignSurfaceExt.CreateControl<TControl>(System.Drawing.Size, System.Drawing.Point)
50 references to CreateControl
DesignSurface (50)
MainForm.cs (50)
128TextBox t1 = surface.CreateControl<TextBox>(new Size(200, 23), new Point(172, 12)); 129Button b1 = surface.CreateControl<Button>(new Size(200, 40), new Point(172, 63)); 130CustomButton b2 = surface.CreateControl<CustomButton>(new Size(200, 40), new Point(172, 200)); 136RadioButton rb1 = surface.CreateControl<RadioButton>(new Size(120, 22), new Point(12, 10)); 138RadioButton rb2 = surface.CreateControl<RadioButton>(new Size(120, 22), new Point(12, 35)); 142CheckBox checkbox1 = surface.CreateControl<CheckBox>(new Size(120, 22), new Point(12, 60)); 144CheckBox checkbox2 = surface.CreateControl<CheckBox>(new Size(120, 22), new Point(12, 85)); 148CheckBox checkbox3 = surface.CreateControl<CheckBox>(new Size(120, 22), new Point(12, 110)); 152Panel pnl = surface.CreateControl<Panel>(new Size(140, 140), new Point(12, 12)); 160Label l1 = surface.CreateControl<Label>(new Size(100, 25), new Point(12, 12)); 161Label l2 = surface.CreateControl<Label>(new Size(120, 25), new Point(12, 12)); 167SplitContainer sct = surface.CreateControl<SplitContainer>(new Size(400, 100), new Point(0, 0)); 173PictureBox pb1 = surface.CreateControl<PictureBox>(new Size(64, 64), new Point(12, 176)); 178surface.CreateControl<DateTimePicker>(new Size(200, 23), new Point(172, 150)); 189TextBox t1 = surface.CreateControl<TextBox>(new Size(200, 20), new Point(10, 10)); 190Button b1 = surface.CreateControl<Button>(new Size(200, 40), new Point(10, 40)); 191Label l1 = surface.CreateControl<Label>(new Size(200, 100), new Point(10, 100)); 198MaskedTextBox maskTextBox = surface.CreateControl<MaskedTextBox>(new Size(200, 20), new Point(260, 60)); 200ComboBox cb1 = surface.CreateControl<ComboBox>(new Size(200, 20), new Point(260, 16)); 204ListBox lb1 = surface.CreateControl<ListBox>(new Size(200, 130), new Point(260, 100)); 207TreeView tv1 = surface.CreateControl<TreeView>(new Size(200, 160), new Point(10, 220)); 218Button b1 = surface.CreateControl<Button>(new Size(200, 40), new Point(10, 10)); 219Button b2 = surface.CreateControl<Button>(new Size(200, 40), new Point(100, 100)); 220Button b3 = surface.CreateControl<Button>(new Size(200, 40), new Point(22, 22)); 224GroupBox gb = surface.CreateControl<GroupBox>(new Size(300, 180), new Point(100, 200)); 228ListView lb1 = surface.CreateControl<ListView>(new Size(290, 160), new Point(320, 30)); 240Button b1 = surface.CreateControl<Button>(new Size(200, 40), new Point(10, 10)); 241Button b2 = surface.CreateControl<Button>(new Size(200, 40), new Point(10, 60)); 251MonthCalendar monthCalendar1 = surface.CreateControl<MonthCalendar>(new Size(230, 170), new Point(10, 110)); 253Button subButton1OfLayoutPanel = surface.CreateControl<Button>(new Size(100, 40), new Point(10, 10)); 254Button subButton2OfLayoutPanel = surface.CreateControl<Button>(new Size(100, 40), new Point(10, 10)); 255FlowLayoutPanel layoutPanel = surface.CreateControl<FlowLayoutPanel>(new Size(430, 200), new Point(250, 10)); 259TrackBar trackBar = surface.CreateControl<TrackBar>(new Size(200, 50), new Point(250, 220)); 264ToolStripContainer toolStripContainer = surface.CreateControl<ToolStripContainer>(new Size(200, 180), new Point(250, 280)); 274surface.CreateControl<TabControl>(new Size(400, 100), new Point(12, 21)); 275surface.CreateControl<TableLayoutPanel>(new Size(290, 160), new Point(20, 150)); 276surface.CreateControl<PropertyGrid>(new Size(200, 150), new Point(430, 23)); 279ListBox listBox = surface.CreateControl<ListBox>(new Size(120, 94), new Point(337, 217)); 283DataGridView dataGridView = surface.CreateControl<DataGridView>(new Size(200, 150), new Point(470, 220)); 296ToolStripContainer toolStripContainer = surface.CreateControl<ToolStripContainer>(new Size(800, 200), new Point(0, 0)); 315ToolStripPanel topToolStripPanel = surface.CreateControl<ToolStripPanel>(new(50, 50), new(0, 0)); 318ToolStripPanel bottomToolStripPanel = surface.CreateControl<ToolStripPanel>(new(50, 50), new(0, 0)); 322SplitContainer splitContainer = surface.CreateControl<SplitContainer>(new(0, 0), new(0, 0)); 326RichTextBox richTextBox = surface.CreateControl<RichTextBox>(new Size(0, 0), new Point(0, 0)); 331MyUserControl userControl = surface.CreateControl<MyUserControl>(new Size(0, 0), new Point(0, 0)); 335MyScrollableControl scrollableControl = surface.CreateControl<MyScrollableControl>(new Size(0, 0), new Point(0, 0)); 348Splitter splitter = surface.CreateControl<Splitter>(new(5, 0), new(0, 0)); 352Panel panel = surface.CreateControl<Panel>(new(0, tabPage6.Height / 2), new(0, 0)); 354NumericUpDown numericUpDown = surface.CreateControl<NumericUpDown>(new(50, 10), new(10, 10)); 357BindingNavigator bindingNavigator = surface.CreateControl<BindingNavigator>(new(0, 0), new(0, 0));