23 writes to ClassName
System.Windows.Forms (23)
System\Windows\Forms\Controls\Buttons\Button.cs (1)
115cp.ClassName = PInvoke.WC_BUTTON;
System\Windows\Forms\Controls\Buttons\CheckBox.cs (1)
247cp.ClassName = PInvoke.WC_BUTTON;
System\Windows\Forms\Controls\Buttons\RadioButton.cs (1)
212cp.ClassName = PInvoke.WC_BUTTON;
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (1)
339cp.ClassName = PInvoke.WC_COMBOBOX;
System\Windows\Forms\Controls\DateTimePicker\DateTimePicker.cs (1)
391cp.ClassName = PInvoke.DATETIMEPICK_CLASS;
System\Windows\Forms\Controls\GroupBox\GroupBox.cs (2)
118cp.ClassName = PInvoke.WC_BUTTON; 124cp.ClassName = null;
System\Windows\Forms\Controls\Labels\FocusableLabel.cs (1)
23createParams.ClassName = null;
System\Windows\Forms\Controls\Labels\Label.cs (1)
249cp.ClassName = PInvoke.WC_STATIC;
System\Windows\Forms\Controls\ListBoxes\ListBox.cs (1)
270cp.ClassName = PInvoke.WC_LISTBOX;
System\Windows\Forms\Controls\ListView\ListView.cs (1)
634cp.ClassName = PInvoke.WC_LISTVIEW;
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.cs (1)
288cp.ClassName = PInvoke.MONTHCAL_CLASS;
System\Windows\Forms\Controls\ProgressBar\ProgressBar.cs (1)
51cp.ClassName = PInvoke.PROGRESS_CLASS;
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridToolTip.cs (1)
88ClassName = PInvoke.TOOLTIPS_CLASS,
System\Windows\Forms\Controls\RichTextBox\RichTextBox.cs (1)
286cp.ClassName = PInvoke.MSFTEDIT_CLASS;
System\Windows\Forms\Controls\TabControl\TabControl.cs (1)
277cp.ClassName = PInvoke.WC_TABCONTROL;
System\Windows\Forms\Controls\TextBox\TextBoxBase.cs (1)
406cp.ClassName = PInvoke.WC_EDIT;
System\Windows\Forms\Controls\TrackBar\TrackBar.cs (1)
153cp.ClassName = PInvoke.TRACKBAR_CLASS;
System\Windows\Forms\Controls\TreeView\TreeView.cs (1)
310cp.ClassName = PInvoke.WC_TREEVIEW;
System\Windows\Forms\ErrorProvider\ErrorProvider.ErrorWindow.cs (1)
114ClassName = PInvoke.TOOLTIPS_CLASS,
System\Windows\Forms\MDI\MDIClient.cs (1)
86cp.ClassName = "MDICLIENT";
System\Windows\Forms\Scrolling\ScrollBar.cs (1)
120cp.ClassName = PInvoke.WC_SCROLLBAR;
System\Windows\Forms\ToolTip\ToolTip.cs (1)
201cp.ClassName = PInvoke.TOOLTIPS_CLASS;
3 references to ClassName
System.Windows.Forms (3)
System\Windows\Forms\CreateParams.cs (1)
72return $"CreateParams {{'{ClassName}', '{Caption}', 0x{Style:x}, 0x{ExStyle:x}, {{{X}, {Y}, {Width}, {Height}}}}}";
System\Windows\Forms\NativeWindow.cs (2)
402WindowClass windowClass = WindowClass.FindOrCreate(cp.ClassName, (WNDCLASS_STYLES)cp.ClassStyle); 468$"Handle created of type '{cp.ClassName}' with caption '{cp.Caption}' from NativeWindow of type '{GetType().FullName}'");