mirror of
https://github.com/Crypto-Notepad/Crypto-Notepad.git
synced 2026-03-11 08:55:25 +00:00
Enabled "AutoCompleteMode" for "Font name" and "Font size" combobox
This commit is contained in:
parent
8fa907b23f
commit
739c3e049e
1 changed files with 4 additions and 0 deletions
4
Crypto Notepad/SettingsForm.Designer.cs
generated
4
Crypto Notepad/SettingsForm.Designer.cs
generated
|
|
@ -413,6 +413,8 @@ private void InitializeComponent()
|
|||
//
|
||||
// FontNameComboBox
|
||||
//
|
||||
this.FontNameComboBox.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
|
||||
this.FontNameComboBox.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
|
||||
this.FontNameComboBox.FormattingEnabled = true;
|
||||
this.FontNameComboBox.Location = new System.Drawing.Point(137, 26);
|
||||
this.FontNameComboBox.Name = "FontNameComboBox";
|
||||
|
|
@ -431,6 +433,8 @@ private void InitializeComponent()
|
|||
//
|
||||
// FontSizeComboBox
|
||||
//
|
||||
this.FontSizeComboBox.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
|
||||
this.FontSizeComboBox.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
|
||||
this.FontSizeComboBox.FormattingEnabled = true;
|
||||
this.FontSizeComboBox.Items.AddRange(new object[] {
|
||||
"8",
|
||||
|
|
|
|||
Loading…
Reference in a new issue