1 write to formatTypeListBox
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\FormatControl.Designer.cs (1)
48formatTypeListBox = new System.Windows.Forms.ListBox();
33 references to formatTypeListBox
System.Windows.Forms.Design (33)
System\Windows\Forms\Design\FormatControl.cs (28)
35if (formatTypeListBox.SelectedItem is FormatTypeClass formatType) 46formatTypeListBox.SelectedIndex = 0; 48for (int i = 0; i < formatTypeListBox.Items.Count; i++) 50var formatType = (FormatTypeClass)formatTypeListBox.Items[i]; 54formatTypeListBox.SelectedIndex = i; 60public FormatTypeClass? FormatTypeItem => formatTypeListBox.SelectedItem as FormatTypeClass; 92var customFormatType = (CustomFormatType?)formatTypeListBox.SelectedItem; 101var item = (FormatTypeClass?)formatTypeListBox.SelectedItem; 110var item = (FormatTypeClass?)formatTypeListBox.SelectedItem; 122var item = (FormatTypeClass?)formatTypeListBox.SelectedItem; 165formatTypeListBox.Focus(); 175int selIndex = formatTypeListBox.SelectedIndex; 230formatTypeListBox.SelectedIndexChanged -= formatTypeListBox_SelectedIndexChanged; 235formatTypeListBox.SelectedIndex = -1; 241formatTypeListBox.SelectedIndexChanged += formatTypeListBox_SelectedIndexChanged; 322formatTypeListBox.Height = tableLayoutPanel1.Bottom - formatTypeListBox.Top; 388formatTypeListBox.SelectedIndexChanged -= formatTypeListBox_SelectedIndexChanged; 389formatTypeListBox.Items.Clear(); 390formatTypeListBox.Items.Add(new NoFormattingFormatType()); 391formatTypeListBox.Items.Add(new NumericFormatType(this)); 392formatTypeListBox.Items.Add(new CurrencyFormatType(this)); 393formatTypeListBox.Items.Add(new DateTimeFormatType(this)); 394formatTypeListBox.Items.Add(new ScientificFormatType(this)); 395formatTypeListBox.Items.Add(new CustomFormatType(this)); 396formatTypeListBox.SelectedIndex = 0; 397formatTypeListBox.SelectedIndexChanged += formatTypeListBox_SelectedIndexChanged; 404var item = (FormatTypeClass?)formatTypeListBox.SelectedItem;
System\Windows\Forms\Design\FormatControl.Designer.cs (5)
72tableLayoutPanel3.Controls.Add(this.formatTypeListBox, 0, 2); 166resources.ApplyResources(this.formatTypeListBox, "formatTypeListBox"); 167formatTypeListBox.FormattingEnabled = true; 168formatTypeListBox.Name = "formatTypeListBox"; 169formatTypeListBox.SelectedIndexChanged += this.formatTypeListBox_SelectedIndexChanged;