CSharpGL.TestHelpers.FontBuilder.FontBuilder_Load C# (CSharp) Method

FontBuilder_Load() private method

private FontBuilder_Load ( object sender, EventArgs e ) : void
sender object
e EventArgs
return void
        private void FontBuilder_Load(object sender, EventArgs e)
        {
            foreach (var item in Enum.GetValues(typeof(GraphicsUnit)))
            {
                this.cmbGraphicsUnit.Items.Add(item);
            }
            this.cmbGraphicsUnit.SelectedIndex = 0;
        }