1 write to currentDpiLabel
WinFormsControlsTest (1)
MenuStripAndCheckedListBox.Designer.cs (1)
59this.currentDpiLabel = new System.Windows.Forms.Label();
10 references to currentDpiLabel
WinFormsControlsTest (10)
MenuStripAndCheckedListBox.cs (2)
18currentDpiLabel.Text = $"Current scaling = {(int)Math.Round((DeviceDpi / 96.0) * 100)}%"; 23currentDpiLabel.Text = $"Current scaling = {(int)Math.Round((DeviceDpi / 96.0) * 100)}%";
MenuStripAndCheckedListBox.Designer.cs (8)
273this.currentDpiLabel.AutoSize = true; 274this.currentDpiLabel.Location = new System.Drawing.Point(22, 66); 275this.currentDpiLabel.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); 276this.currentDpiLabel.Name = "currentDpiLabel"; 277this.currentDpiLabel.Size = new System.Drawing.Size(131, 25); 278this.currentDpiLabel.TabIndex = 4; 279this.currentDpiLabel.Text = "current DPI: "; 286this.Controls.Add(this.currentDpiLabel);