-
Notifications
You must be signed in to change notification settings - Fork 93
Expand file tree
/
Copy pathEdgeSize.cs
More file actions
41 lines (36 loc) · 827 Bytes
/
EdgeSize.cs
File metadata and controls
41 lines (36 loc) · 827 Bytes
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
using System;
using System.Collections.Generic;
using System.Text;
namespace CssSprite
{
/// <summary>
/// 边缘尺寸
/// </summary>
public class EdgeSize
{
private int _minHeight;
private int _minWidth;
private int _maxHeight;
private int _maxWidth;
public int MinHeight
{
get { return _minHeight; }
set { _minHeight = value; }
}
public int MinWidth
{
get { return _minWidth; }
set { _minWidth = value; }
}
public int MaxHeight
{
get { return _maxHeight; }
set { _maxHeight = value; }
}
public int MaxWidth
{
get { return _maxWidth; }
set { _maxWidth = value; }
}
}
}