lixiaojun
9 天以前 3c12834c5557bd2200f2660cbf0df899538ab2bd
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
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
using System.Windows.Forms.Integration;
using Yw.Settings;
using Yw.WpfUI.Hydro;
 
namespace Yw.WinFrmUI.Hydro
{
    public partial class ViewerL3d2 : UserControl
    {
        public ViewerL3d2()
        {
            InitializeComponent();
        }
 
        #region 事件集合
 
        /// <summary>
        /// 选择改变事件
        /// </summary>
        public event Action<List<Yw.WpfUI.Hydro.VisualL3d>> SelectionChangedEvent;
 
        #endregion
 
        #region 私有字段
 
        private Yw.WpfUI.Hydro.ViewerL3d _wpfViewer = null;//wpf控件 
 
        #endregion
 
        #region 初始化
 
        /// <summary>
        /// 初始化
        /// </summary>
        public void Initial(Yw.WpfUI.Hydro.NetworkL3d nw)
        {
            InitialWpfControl();
            _wpfViewer.Initial(nw);
        }
 
        //初始化wpf控件
        private void InitialWpfControl()
        {
            _wpfViewer = new WpfUI.Hydro.ViewerL3d();
            _wpfViewer.SelectionChangedEvent += (visuals) => this.SelectionChangedEvent?.Invoke(visuals);
            var elementHost = new ElementHost();
            elementHost.Dock = DockStyle.Fill;
            elementHost.Child = _wpfViewer;
            this.Controls.Clear();
            this.Controls.Add(elementHost);
        }
 
        #endregion
 
        #region 工作面板
 
        /// <summary>
        /// 显示工作面板
        /// </summary>
        public void ShowWorkPanel()
        {
            _wpfViewer?.ShowWorkPanel();
        }
 
        /// <summary>
        /// 隐藏工作面板
        /// </summary>
        public void HideWorkPanel()
        {
            _wpfViewer?.HideWorkPanel();
        }
 
        /// <summary>
        /// 工作面板可见性
        /// </summary>
        public bool WorkPanelVisible
        {
            get
            {
                return _wpfViewer == null ? false : _wpfViewer.WorkPanelVisible;
            }
            set
            {
                if (_wpfViewer != null)
                {
                    _wpfViewer.WorkPanelVisible = value;
                }
            }
        }
 
        /// <summary>
        /// 设置工作面板
        /// </summary>
        public void SetWorkPanel(WorkPanelL3d workPanel)
        {
            _wpfViewer?.SetWorkPanel(workPanel);
        }
 
        #endregion
 
        #region 图片背景
 
        /// <summary>
        /// 显示图片背景
        /// </summary>
        public void ShowBackground()
        {
            _wpfViewer?.ShowBackground();
        }
 
        /// <summary>
        /// 隐藏图片背景
        /// </summary>
        public void HideBackground()
        {
            _wpfViewer?.HideBackground();
        }
 
        /// <summary>
        /// 图片背景可见性
        /// </summary>
        public bool BackgroundVisible
        {
            get
            {
                return _wpfViewer == null ? false : _wpfViewer.BackgroundVisible;
            }
            set
            {
                if (_wpfViewer != null)
                {
                    _wpfViewer.BackgroundVisible = value;
                }
            }
        }
 
        /// <summary>
        /// 设置图片背景
        /// </summary>
        public void SetBackground(BackgroundL3d bc)
        {
            _wpfViewer?.SetBackground(bc);
        }
 
        /// <summary>
        /// 设置图片背景
        /// </summary>
        public void SetBackground(string url)
        {
            _wpfViewer?.SetBackground(url);
        }
 
        #endregion
 
        #region 相机视角
 
        /// <summary>
        /// 显示上视图
        /// </summary>
        public void ShowTopView()
        {
            _wpfViewer?.ShowTopView();
        }
 
        /// <summary>
        /// 显示下视图
        /// </summary>
        public void ShowBottomView()
        {
            _wpfViewer?.ShowBottomView();
        }
 
        /// <summary>
        /// 显示左视图
        /// </summary>
        public void ShowLeftView()
        {
            _wpfViewer?.ShowLeftView();
        }
 
        /// <summary>
        /// 显示右视图
        /// </summary>
        public void ShowRightView()
        {
            _wpfViewer?.ShowRightView();
        }
 
        /// <summary>
        /// 显示前视图
        /// </summary>
        public void ShowFrontView()
        {
            _wpfViewer?.ShowFrontView();
        }
 
        /// <summary>
        /// 显示后视图
        /// </summary>
        public void ShowBackView()
        {
            _wpfViewer?.ShowBackView();
        }
 
        /// <summary>
        /// 显示西南视角
        /// 从物体的左前下方观察
        /// </summary>
        public void ShowSouthWestView()
        {
            _wpfViewer?.ShowSouthWestView();
        }
 
        /// <summary>
        /// 显示东南视角
        /// 从物体的右前下方观察
        /// </summary>
        public void ShowSouthEastView()
        {
            _wpfViewer?.ShowSouthEastView();
        }
 
        /// <summary>
        /// 显示东北视角
        /// 从物体的右后上方观察
        /// </summary>
        public void ShowNorthEastView()
        {
            _wpfViewer?.ShowNorthEastView();
        }
 
        /// <summary>
        /// 显示西北视角
        /// 从物体的左后上方观察
        /// </summary>
        public void ShowNorthWestView()
        {
            _wpfViewer?.ShowNorthWestView();
        }
 
        #endregion
 
        #region 关联缩放
 
        /// <summary>
        /// 缩放至可见构件
        /// </summary>
        public void ZoomToVisual(string Id)
        {
            _wpfViewer?.ZoomToVisual(Id);
        }
 
        /// <summary>
        /// 缩放至可见构件
        /// </summary>
        public void ZoomToVisual(List<string> Ids)
        {
            _wpfViewer?.ZoomToVisual(Ids);
        }
 
        #endregion
 
        #region 选择构件
 
        /// <summary>
        /// 选择构件
        /// </summary>
        public void SelectVisual(string Id)
        {
            _wpfViewer?.SelectVisual(Id);
        }
 
        /// <summary>
        /// 选择构件
        /// </summary>
        public void SelectVisual(List<string> Ids)
        {
            _wpfViewer?.SelectVisual(Ids);
        }
 
        #endregion
 
        #region 缩放并选择构件
 
        /// <summary>
        /// 缩放并选择构件
        /// </summary>
        public void ZoomAndSelectVisual(string Id)
        {
            _wpfViewer?.ZoomAndSelectVisual(Id);
        }
 
        /// <summary>
        /// 缩放并选择构件
        /// </summary>
        public void ZoomAndSelectVisual(List<string> Ids)
        {
            _wpfViewer?.ZoomAndSelectVisual(Ids);
        }
 
 
        #endregion
 
        #region 颜色覆盖
 
        /// <summary>
        /// 设置颜色
        /// </summary>
        public void SetColor(string Id, string htmlColor)
        {
            _wpfViewer?.SetColor(Id, htmlColor);
        }
 
        /// <summary>
        /// 设置颜色
        /// </summary>
        public void SetColor(List<string> Ids, string htmlColor)
        {
            _wpfViewer?.SetColor(Ids, htmlColor);
        }
 
        /// <summary>
        /// 设置颜色
        /// </summary>
        public void SetColor(List<ColorL3d> list)
        {
            _wpfViewer?.SetColor(list);
        }
 
        /// <summary>
        /// 清除颜色
        /// </summary>
        public void ClearColor(string Id)
        {
            _wpfViewer?.ClearColor(Id);
        }
 
        /// <summary>
        /// 清除颜色
        /// </summary>
        public void ClearColor(List<string> Ids)
        {
            _wpfViewer?.ClearColor(Ids);
        }
 
        /// <summary>
        /// 清除颜色
        /// </summary>
        public void ClearColor()
        {
            _wpfViewer?.ClearColor();
        }
 
        #endregion
 
        #region 透明度
 
        /// <summary>
        /// 设置透明度
        /// </summary>
        public void SetOpacity(string Id, double opacity)
        {
            _wpfViewer?.SetOpacity(Id, opacity);
        }
 
        /// <summary>
        /// 设置透明度
        /// </summary>
        public void SetOpacity(List<string> Ids, double opacity)
        {
            _wpfViewer?.SetOpacity(Ids, opacity);
        }
 
        /// <summary>
        /// 设置透明度
        /// </summary>
        public void SetOpacity(List<OpacityL3d> list)
        {
            _wpfViewer?.SetOpacity(list);
        }
 
        /// <summary>
        /// 清除透明度
        /// </summary>
        public void ClearOpacity(string Id)
        {
            _wpfViewer?.ClearOpacity(Id);
        }
 
        /// <summary>
        /// 清除透明度
        /// </summary>
        public void ClearOpacity(List<string> Ids)
        {
            _wpfViewer?.ClearOpacity(Ids);
        }
 
        /// <summary>
        /// 清除透明度
        /// </summary>
        public void ClearOpacity()
        {
            _wpfViewer?.ClearOpacity();
        }
 
        #endregion
 
        #region 可见性
 
        /// <summary>
        /// 设置可见性
        /// </summary>
        public void SetVisible(string Id, bool visible)
        {
            _wpfViewer?.SetVisible(Id, visible);
        }
 
        /// <summary>
        /// 设置可见性
        /// </summary>
        public void SetVisible(List<string> Ids, bool visible)
        {
            _wpfViewer?.SetVisible(Ids, visible);
        }
 
        /// <summary>
        /// 设置可见性
        /// </summary>
        public void SetVisible(List<VisibleL3d> list)
        {
            _wpfViewer?.SetVisible(list);
        }
 
        /// <summary>
        /// 清除可见性
        /// </summary>
        public void ClearVisible(string Id)
        {
            _wpfViewer?.ClearVisible(Id);
        }
 
        /// <summary>
        /// 清除可见性
        /// </summary>
        public void ClearVisible(List<string> Ids)
        {
            _wpfViewer?.ClearVisible(Ids);
        }
 
        /// <summary>
        /// 清除可见性
        /// </summary>
        public void ClearVisible()
        {
            _wpfViewer?.ClearVisible();
        }
 
        #endregion
 
    }
}