1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| using Shared;
| using System;
| using System.Collections.Generic;
| using System.Text;
|
| namespace HDL_ON.Stan
| {
| /// <summary>
| /// 做成一个显示图片的普通控件✩
| /// </summary>
| public class PicViewControl : ButtonCtrBase
| {
| /// <summary>
| /// 做成一个显示图片的普通控件
| /// </summary>
| /// <param name="i_Width">宽度</param>
| /// <param name="i_Height">高度</param>
| /// <param name="real">是否计算真实值</param>
| public PicViewControl(int i_Width, int i_Height, bool real = true)
| {
| this.InitPictrueSize(i_Width, i_Height, real);
| }
| }
| }
|
|