-
Notifications
You must be signed in to change notification settings - Fork 5
/
TimeUpDown1.cs
57 lines (44 loc) · 1008 Bytes
/
TimeUpDown1.cs
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
using System;
namespace Subindex
{
/// <summary>
///
/// </summary>
public class TimeUpDown :System.Windows.Forms.UpDownBase
{
public System.ComponentModel.Container components = null;
public TimeUpDown()
{
// 该调用是 Windows.Forms 窗体设计器所必需的。
InitializeComponent();
// TODO: 在 InitComponent 调用后添加任何初始化
}
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
protected override void Dispose( bool disposing )
{
if( disposing )
{
if( components != null )
components.Dispose();
}
base.Dispose( disposing );
}
#region 组件设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要使用代码编辑器
/// 修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
}
#endregion
public override void UpButton()
{}
public override void DownButton()
{}
protected override void UpdateEditText()
{}
}
}