Implemented interface member:
method
CreateControl<TControl>
DemoConsole.IDesignSurfaceExtended.CreateControl<TControl>(System.Drawing.Size, System.Drawing.Point)
54 references to CreateControl
DemoConsole (54)
MainForm.cs (54)
149TextBox t1 = surface.CreateControl<TextBox>(new Size(200, 23), new Point(172, 12)); 150Button b1 = surface.CreateControl<Button>(new Size(200, 40), new Point(172, 63)); 151CustomButton b2 = surface.CreateControl<CustomButton>(new Size(200, 40), new Point(172, 200)); 157RadioButton rb1 = surface.CreateControl<RadioButton>(new Size(120, 22), new Point(12, 10)); 159RadioButton rb2 = surface.CreateControl<RadioButton>(new Size(120, 22), new Point(12, 35)); 163CheckBox checkbox1 = surface.CreateControl<CheckBox>(new Size(120, 22), new Point(12, 60)); 165CheckBox checkbox2 = surface.CreateControl<CheckBox>(new Size(120, 22), new Point(12, 85)); 169CheckBox checkbox3 = surface.CreateControl<CheckBox>(new Size(120, 22), new Point(12, 110)); 173Panel pnl = surface.CreateControl<Panel>(new Size(140, 140), new Point(12, 12)); 181Label l1 = surface.CreateControl<Label>(new Size(100, 25), new Point(12, 12)); 182Label l2 = surface.CreateControl<Label>(new Size(120, 25), new Point(12, 12)); 188SplitContainer sct = surface.CreateControl<SplitContainer>(new Size(400, 100), new Point(0, 0)); 194PictureBox pb1 = surface.CreateControl<PictureBox>(new Size(64, 64), new Point(12, 176)); 199surface.CreateControl<DateTimePicker>(new Size(200, 23), new Point(172, 150)); 210TextBox t1 = surface.CreateControl<TextBox>(new Size(200, 20), new Point(10, 10)); 211Button b1 = surface.CreateControl<Button>(new Size(200, 40), new Point(10, 40)); 212Label l1 = surface.CreateControl<Label>(new Size(200, 100), new Point(10, 100)); 219MaskedTextBox maskTextBox = surface.CreateControl<MaskedTextBox>(new Size(200, 20), new Point(260, 60)); 221ComboBox cb1 = surface.CreateControl<ComboBox>(new Size(200, 20), new Point(260, 16)); 225ListBox lb1 = surface.CreateControl<ListBox>(new Size(200, 130), new Point(260, 100)); 228TreeView tv1 = surface.CreateControl<TreeView>(new Size(200, 160), new Point(10, 220)); 239Button b1 = surface.CreateControl<Button>(new Size(200, 40), new Point(10, 10)); 240Button b2 = surface.CreateControl<Button>(new Size(200, 40), new Point(100, 100)); 241Button b3 = surface.CreateControl<Button>(new Size(200, 40), new Point(22, 22)); 245GroupBox gb = surface.CreateControl<GroupBox>(new Size(300, 180), new Point(100, 200)); 249ListView lb1 = surface.CreateControl<ListView>(new Size(290, 160), new Point(320, 30)); 261Button b1 = surface.CreateControl<Button>(new Size(200, 40), new Point(10, 10)); 262Button b2 = surface.CreateControl<Button>(new Size(200, 40), new Point(10, 60)); 272MonthCalendar monthCalendar1 = surface.CreateControl<MonthCalendar>(new Size(230, 170), new Point(10, 110)); 274Button subButton1OfLayoutPanel = surface.CreateControl<Button>(new Size(100, 40), new Point(10, 10)); 275Button subButton2OfLayoutPanel = surface.CreateControl<Button>(new Size(100, 40), new Point(10, 10)); 276FlowLayoutPanel layoutPanel = surface.CreateControl<FlowLayoutPanel>(new Size(430, 200), new Point(250, 10)); 280TrackBar trackBar = surface.CreateControl<TrackBar>(new Size(200, 50), new Point(250, 220)); 285ToolStripContainer toolStripContainer = surface.CreateControl<ToolStripContainer>(new Size(200, 180), new Point(250, 280)); 295surface.CreateControl<TabControl>(new Size(400, 100), new Point(12, 21)); 297surface.CreateControl<TableLayoutPanel>(new Size(290, 160), new Point(20, 150)); 298surface.CreateControl<PropertyGrid>(new Size(200, 150), new Point(430, 23)); 301ListBox listBox = surface.CreateControl<ListBox>(new Size(120, 94), new Point(337, 217)); 305DataGridView dataGridView = surface.CreateControl<DataGridView>(new Size(200, 150), new Point(470, 220)); 310StatusStrip statusStrip1 = surface.CreateControl<StatusStrip>(new Size(400, 50), new Point(500, 0)); 336ToolStripContainer toolStripContainer = surface.CreateControl<ToolStripContainer>(new Size(800, 200), new Point(0, 60)); 339ToolStrip toolStrip1 = surface.CreateControl<ToolStrip>(new Size(400, 50), new Point(0, 0)); 348MenuStrip menuStrip1 = surface.CreateControl<MenuStrip>(new Size(400, 50), new Point(0, 60)); 349MenuStrip menuStrip2 = surface.CreateControl<MenuStrip>(new Size(400, 50), new Point(0, 150)); 372ToolStripPanel topToolStripPanel = surface.CreateControl<ToolStripPanel>(new(50, 50), new(0, 0)); 375ToolStripPanel bottomToolStripPanel = surface.CreateControl<ToolStripPanel>(new(50, 50), new(0, 0)); 379SplitContainer splitContainer = surface.CreateControl<SplitContainer>(new(0, 0), new(0, 0)); 383RichTextBox richTextBox = surface.CreateControl<RichTextBox>(new Size(0, 0), new Point(0, 0)); 388MyUserControl userControl = surface.CreateControl<MyUserControl>(new Size(350, 100), new Point(0, 0)); 391MyScrollableControl scrollableControl = surface.CreateControl<MyScrollableControl>(new Size(0, 0), new Point(0, 0)); 404Splitter splitter = surface.CreateControl<Splitter>(new(5, 0), new(0, 0)); 408Panel panel = surface.CreateControl<Panel>(new(0, tabPage6.Height / 3), new(0, 0)); 410NumericUpDown numericUpDown = surface.CreateControl<NumericUpDown>(new(50, 10), new(10, 10)); 417BindingNavigator bindingNavigator = surface.CreateControl<BindingNavigator>(new(0, 0), new(0, 0));