blob: 9fb572afebfcb6fd9a4b17a097cb2df3a761ade6 (
plain)
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
namespace csharp
{
/// <summary>
/// Summary description for Form1.
/// </summary>
public class Form1 : System.Windows.Forms.Form
{
private AxwrapperaxLib.AxQPushButton resetButton;
private AxmultipleaxLib.AxQAxWidget2 circleWidget;
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.Container components = null;
public Form1()
{
//
// Required for Windows Form Designer support
//
InitializeComponent();
//
// TODO: Add any constructor code after InitializeComponent call
//
}
/// <summary>
/// Clean up any resources being used.
/// </summary>
protected override void Dispose( bool disposing )
{
if( disposing )
{
if (components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
}
#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()
{
System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(Form1));
this.resetButton = new AxwrapperaxLib.AxQPushButton();
this.circleWidget = new AxmultipleaxLib.AxQAxWidget2();
((System.ComponentModel.ISupportInitialize)(this.resetButton)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.circleWidget)).BeginInit();
this.SuspendLayout();
//
// resetButton
//
this.resetButton.Anchor = (System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right);
this.resetButton.Enabled = true;
this.resetButton.Location = new System.Drawing.Point(160, 296);
this.resetButton.Name = "resetButton";
this.resetButton.OcxState = ((System.Windows.Forms.AxHost.State)(resources.GetObject("resetButton.OcxState")));
this.resetButton.Size = new System.Drawing.Size(168, 32);
this.resetButton.TabIndex = 1;
this.resetButton.clicked += new System.EventHandler(this.resetLineWidth);
//
// circleWidget
//
this.circleWidget.Anchor = (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right);
this.circleWidget.Enabled = true;
this.circleWidget.Location = new System.Drawing.Point(8, 8);
this.circleWidget.Name = "circleWidget";
this.circleWidget.OcxState = ((System.Windows.Forms.AxHost.State)(resources.GetObject("circleWidget.OcxState")));
this.circleWidget.Size = new System.Drawing.Size(320, 264);
this.circleWidget.TabIndex = 2;
this.circleWidget.ClickEvent += new System.EventHandler(this.circleClicked);
//
// Form1
//
this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
this.ClientSize = new System.Drawing.Size(336, 333);
this.Controls.AddRange(new System.Windows.Forms.Control[] {
this.circleWidget,
this.resetButton});
this.Name = "Form1";
this.Text = "Form1";
((System.ComponentModel.ISupportInitialize)(this.resetButton)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.circleWidget)).EndInit();
this.ResumeLayout(false);
}
#endregion
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.Run(new Form1());
}
//! [0]
private void circleClicked(object sender, System.EventArgs e)
{
this.circleWidget.lineWidth++;
}
//! [0]
//! [1]
private void resetLineWidth(object sender, System.EventArgs e)
{
this.circleWidget.lineWidth = 1;
this.resetButton.setFocus();
}
//! [1]
}
}
|