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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Windows.Controls;
using System.Windows.Media;
using System.Globalization;
using System.Threading;
using MultiLayout;
using MultiLayout.UiModule;
namespace MultiLayout.MainEdit
{
/// <summary>
/// 编辑界面的图表区
/// </summary>
public class MeGraphTabItem : INotifyPropertyChanged
{
public TabItem mTabItem;
/// <summary>
/// 唯一标识码
/// </summary>
public int ID = 0;
public string Title { get; set; } = "??";
[PropertyChanged.DoNotCheckEquality]
public int ColCnt { get; set; } = 1;
[PropertyChanged.DoNotCheckEquality]
public int RowCnt { get; set; } = 1;
public List<bool> RowDefinitions { get; } = new List<bool>();
public List<bool> ColumnDefinitions { get; } = new List<bool>();
public List<MeGraphComponent> Components = new List<MeGraphComponent>();
public event Action<MeGraphTabItem> RCChanged;
public MeGraphTabItem()
{
RefreshRC();
}
bool refresh(List<bool> list, int cnt)
{
int n = cnt - list.Count();
if (n == 0)
return false;
if (n > 0)
{
for (int i = 0; i < n; i++)
{
list.Add(false);
}
}
else
{
list.RemoveRange(cnt, -n);
}
return true;
}
void RefreshRC()
{
bool b1 = refresh(RowDefinitions, RowCnt);
bool b2 = refresh(ColumnDefinitions, ColCnt);
if (b1 || b2)
{
//把在范围外的控件缩小,或删除
MakeComponentRectVaild();
RCChanged?.Invoke(this);
}
}
public void RefreshRC(int rowcnt, int colcnt)
{
RowCnt = rowcnt;
ColCnt = colcnt;
RefreshRC();
}
public bool IsComponentRectVaild(System.Drawing.Rectangle rect)
{
return IsComponentRectVaild(rect, null);
}
public bool IsComponentRectVaild(System.Drawing.Rectangle rect, MeGraphComponent component)
{
//判断超出范围
if (!new System.Drawing.Rectangle(0, 0, ColCnt, RowCnt).Contains(rect))
{
return false;
}
//判断是否与其它控件有交集
for (int i = 0; i < Components.Count(); i++)
{
if (Components[i] == component)
continue;
if (rect.IntersectsWith(Components[i].Rect))
return false;
}
return true;
}
void MakeComponentRectVaild()
{
System.Drawing.Rectangle total = new System.Drawing.Rectangle(0, 0, ColCnt, RowCnt);
for (int i = 0; i < Components.Count(); i++)
{
System.Drawing.Rectangle r = Components[i].Rect;
if (r.IntersectsWith(total))
{
r.Intersect(total);
Components[i].Rect = r;
}
else
{
//删除
Components.RemoveAt(i);
i--;
continue;
}
}
}
/// <summary>
/// 获取空的位置
/// </summary>
/// <returns></returns>
public System.Drawing.Point GetFreeLocal()
{
//System.Drawing.Point
//System.Drawing.Rectangle.
for (int y = 0; y < RowCnt; y++)
{
for (int x = 0; x < ColCnt; x++)
{
System.Drawing.Point p = new System.Drawing.Point(x, y);
bool isContains = false;
foreach (MeGraphComponent c in Components)
{
if (c.Rect.Contains(p))
{
isContains = true;
break;
}
}
if (!isContains)
return p;
}
}
return new System.Drawing.Point(-1, -1);
}
/// <summary>
///
/// </summary>
/// <param name="propertyname"></param>
protected void NotifyPropertyChanged(string propertyname)
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyname));
}
public event PropertyChangedEventHandler PropertyChanged;
}
/// <summary>
/// 编辑界面的图表区 对应 FlyLayout 的 GraphComponent 信息
/// </summary>
public class MeGraphComponent : MeFlyComponent
{
public System.Drawing.Rectangle Rect { get; set; }
public MeGraphTabItem mItem;
}
/// <summary>
/// 组件类型
/// </summary>
public class MeComponentType : INotifyPropertyChanged
{
/// <summary>
///
/// </summary>
//public string ModuleName { get; set; }
/// <summary>
///
/// </summary>
public IUiModule2 Module { get; set; }
/// <summary>
///
/// </summary>
public Brush Background { get; set; }
/// <summary>
///
/// </summary>
public string Header { get; set; }
/// <summary>
/// 只能添加一次
/// </summary>
public bool IsUnique { get; set; }
/// <summary>
/// 当只能添加一次,且当前已经添加了,isenable=false
/// </summary>
public bool IsEnable
{
get {
if (IsUnique && Count > 0)
{
return false;
}
else
{
return true;
}
}
}
/// <summary>
/// 当前一共添加了多少控件
/// </summary>
public int Count { get; set; }
public event PropertyChangedEventHandler PropertyChanged;
}
/// <summary>
/// 编辑界面的 组件 对应 FlyLayout 的 FlyComponent 信息
/// </summary>
public class MeFlyComponent : INotifyPropertyChanged
{
/// <summary>
/// 唯一标识码
/// </summary>
public int ID = 0;
/// <summary>
/// 对应在grid中的button
/// </summary>
public Button mButton;
public event PropertyChangedEventHandler PropertyChanged;
public MeComponentType Type { get; set; }
/// <summary>
/// 服务容器名称
/// </summary>
public string ServiceContainerName { get; set; }
}
}