This repository was archived by the owner on Mar 30, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 222
Expand file tree
/
Copy pathCustomFont.Designer.cs
More file actions
63 lines (57 loc) · 2.64 KB
/
CustomFont.Designer.cs
File metadata and controls
63 lines (57 loc) · 2.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
namespace CustomFont
{
partial class CustomFont
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.renderControl = new SharpDX.Windows.RenderControl();
this.comboBoxFonts = new System.Windows.Forms.ComboBox();
this.SuspendLayout();
//
// renderControl
//
this.renderControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.renderControl.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.renderControl.Location = new System.Drawing.Point(9, 45);
this.renderControl.Margin = new System.Windows.Forms.Padding(0);
this.renderControl.Name = "renderControl";
this.renderControl.Size = new System.Drawing.Size(718, 506);
this.renderControl.TabIndex = 0;
//
// comboBoxFonts
//
this.comboBoxFonts.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboBoxFonts.FormattingEnabled = true;
this.comboBoxFonts.Location = new System.Drawing.Point(12, 12);
this.comboBoxFonts.Name = "comboBoxFonts";
this.comboBoxFonts.Size = new System.Drawing.Size(230, 21);
this.comboBoxFonts.TabIndex = 1;
this.comboBoxFonts.SelectedIndexChanged += new System.EventHandler(this.comboBoxFonts_SelectedIndexChanged);
//
// CustomFont
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(736, 560);
this.Controls.Add(this.comboBoxFonts);
this.Controls.Add(this.renderControl);
this.Name = "CustomFont";
this.Text = "SharpDX - DirectWrite CustomFont Sample";
this.ResumeLayout(false);
}
#endregion
private SharpDX.Windows.RenderControl renderControl;
private System.Windows.Forms.ComboBox comboBoxFonts;
}
}