forked from EdisonTalk/DesignPattern.Samples.CSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFBSettingWindow.cs
48 lines (41 loc) · 1.19 KB
/
FBSettingWindow.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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Manulife.ChengDu.DesignPattern.Command
{
/// <summary>
/// 功能键设置窗口类
/// </summary>
public class FBSettingWindow
{
// 窗口标题
public string Title { get; set; }
// 所有功能键集合
private IList<FunctionButton> functionButtonList = new List<FunctionButton>();
public FBSettingWindow(string title)
{
this.Title = title;
}
public void AddFunctionButton(FunctionButton fb)
{
functionButtonList.Add(fb);
}
public void RemoveFunctionButton(FunctionButton fb)
{
functionButtonList.Remove(fb);
}
// 显示窗口及功能键
public void Display()
{
Console.WriteLine("显示窗口:{0}", this.Title);
Console.WriteLine("显示功能键:");
foreach (var fb in functionButtonList)
{
Console.WriteLine(fb.Name);
}
Console.WriteLine("------------------------------------------");
}
}
}