| | |
| | | [Browsable(false)] |
| | | public PointF3D OffSet { get; set; } = new PointF3D(0, 0, 0); |
| | | |
| | | |
| | | private string _BackGroundImg_FullPath; |
| | | [Browsable(false)] |
| | | public string BackGroundImg_FullPath |
| | | { |
| | | get |
| | | { |
| | | FileInfo fi = new FileInfo(FullPath); |
| | | return fi.FullName.Substring(0, fi.FullName.Length - fi.Extension.Length) + ".png"; |
| | | if (string.IsNullOrEmpty(_BackGroundImg_FullPath)) |
| | | { |
| | | FileInfo fi = new FileInfo(FullPath); |
| | | return fi.FullName.Substring(0, fi.FullName.Length - fi.Extension.Length) + ".png"; |
| | | } |
| | | else return _BackGroundImg_FullPath; |
| | | } |
| | | set |
| | | { |
| | | _BackGroundImg_FullPath = value; |
| | | } |
| | | } |
| | | |