2019-08-29 20:33:23 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using Syroot.Maths;
|
|
|
|
|
using Toolbox.Library.IO;
|
2019-08-29 21:17:24 +00:00
|
|
|
|
using Toolbox.Library;
|
2019-08-29 23:01:47 +00:00
|
|
|
|
using WeifenLuo.WinFormsUI.Docking;
|
2019-08-31 01:53:00 +00:00
|
|
|
|
using System.ComponentModel;
|
2019-08-29 20:33:23 +00:00
|
|
|
|
|
|
|
|
|
namespace LayoutBXLYT
|
|
|
|
|
{
|
|
|
|
|
public class BasePane : SectionCommon
|
|
|
|
|
{
|
2019-09-06 23:12:39 +00:00
|
|
|
|
public bool IsRoot = false;
|
|
|
|
|
|
|
|
|
|
public bool ParentIsRoot
|
|
|
|
|
{
|
|
|
|
|
get { return Parent != null && Parent.IsRoot; }
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-02 21:10:24 +00:00
|
|
|
|
[DisplayName("Alpha"), CategoryAttribute("Alpha")]
|
|
|
|
|
public byte Alpha { get; set; }
|
|
|
|
|
|
|
|
|
|
[DisplayName("Influence Alpha"), CategoryAttribute("Alpha")]
|
|
|
|
|
public virtual bool InfluenceAlpha { get; set; }
|
|
|
|
|
|
2019-08-31 01:53:00 +00:00
|
|
|
|
[Browsable(false)]
|
2019-09-05 20:24:03 +00:00
|
|
|
|
public virtual bool DisplayInEditor { get; set; } = true;
|
2019-08-29 20:33:23 +00:00
|
|
|
|
|
2019-08-31 01:53:00 +00:00
|
|
|
|
[DisplayName("Name"), CategoryAttribute("Pane")]
|
2019-08-29 20:33:23 +00:00
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
2019-08-31 01:53:00 +00:00
|
|
|
|
[DisplayName("Translate"), CategoryAttribute("Pane")]
|
2019-08-29 20:33:23 +00:00
|
|
|
|
public Vector3F Translate { get; set; }
|
2019-08-31 01:53:00 +00:00
|
|
|
|
|
|
|
|
|
[DisplayName("Rotate"), CategoryAttribute("Pane")]
|
2019-08-29 20:33:23 +00:00
|
|
|
|
public Vector3F Rotate { get; set; }
|
2019-08-31 01:53:00 +00:00
|
|
|
|
|
|
|
|
|
[DisplayName("Scale"), CategoryAttribute("Pane")]
|
2019-08-29 20:33:23 +00:00
|
|
|
|
public Vector2F Scale { get; set; }
|
2019-08-31 01:53:00 +00:00
|
|
|
|
|
|
|
|
|
[DisplayName("Width"), CategoryAttribute("Pane")]
|
2019-08-29 20:33:23 +00:00
|
|
|
|
public float Width { get; set; }
|
2019-08-31 01:53:00 +00:00
|
|
|
|
|
2019-09-08 19:15:42 +00:00
|
|
|
|
[DisplayName("Height"), CategoryAttribute("Pane")]
|
2019-08-29 20:33:23 +00:00
|
|
|
|
public float Height { get; set; }
|
|
|
|
|
|
2019-08-31 01:53:00 +00:00
|
|
|
|
[DisplayName("Origin X"), CategoryAttribute("Origin")]
|
2019-08-29 20:33:23 +00:00
|
|
|
|
public virtual OriginX originX { get; set; }
|
2019-08-31 01:53:00 +00:00
|
|
|
|
|
|
|
|
|
[DisplayName("Origin X"), CategoryAttribute("Origin")]
|
2019-08-29 20:33:23 +00:00
|
|
|
|
public virtual OriginY originY { get; set; }
|
2019-08-31 01:53:00 +00:00
|
|
|
|
|
2019-09-06 23:12:39 +00:00
|
|
|
|
[DisplayName("Parent Origin X"), CategoryAttribute("Origin")]
|
2019-08-29 20:33:23 +00:00
|
|
|
|
public virtual OriginX ParentOriginX { get; set; }
|
2019-08-31 01:53:00 +00:00
|
|
|
|
|
2019-09-06 23:12:39 +00:00
|
|
|
|
[DisplayName("Parent Origin Y"), CategoryAttribute("Origin")]
|
2019-08-29 20:33:23 +00:00
|
|
|
|
public virtual OriginY ParentOriginY { get; set; }
|
|
|
|
|
|
2019-08-31 01:53:00 +00:00
|
|
|
|
[Browsable(false)]
|
2019-08-29 20:33:23 +00:00
|
|
|
|
public BasePane Parent { get; set; }
|
|
|
|
|
|
2019-08-31 01:53:00 +00:00
|
|
|
|
[Browsable(false)]
|
2019-08-29 20:33:23 +00:00
|
|
|
|
public List<BasePane> Childern { get; set; } = new List<BasePane>();
|
|
|
|
|
|
2019-08-31 01:53:00 +00:00
|
|
|
|
[Browsable(false)]
|
2019-08-29 20:33:23 +00:00
|
|
|
|
public bool HasChildern
|
|
|
|
|
{
|
|
|
|
|
get { return Childern.Count > 0; }
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-30 22:53:45 +00:00
|
|
|
|
public BasePane()
|
|
|
|
|
{
|
|
|
|
|
originX = OriginX.Center;
|
|
|
|
|
originY = OriginY.Center;
|
|
|
|
|
ParentOriginX = OriginX.Center;
|
|
|
|
|
ParentOriginY = OriginY.Center;
|
|
|
|
|
}
|
2019-08-29 20:33:23 +00:00
|
|
|
|
|
2019-09-02 23:48:47 +00:00
|
|
|
|
private CustomRectangle rectangle;
|
2019-09-08 19:15:42 +00:00
|
|
|
|
|
|
|
|
|
[Browsable(false)]
|
2019-09-02 23:48:47 +00:00
|
|
|
|
public CustomRectangle Rectangle
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2019-09-06 23:12:39 +00:00
|
|
|
|
UpdateRectangle();
|
2019-09-02 23:48:47 +00:00
|
|
|
|
return rectangle;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void UpdateRectangle() {
|
|
|
|
|
rectangle = CreateRectangle();
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-29 20:33:23 +00:00
|
|
|
|
public CustomRectangle CreateRectangle()
|
|
|
|
|
{
|
|
|
|
|
//Do origin transforms
|
2019-09-06 23:12:39 +00:00
|
|
|
|
var transformed = TransformOrientation((int)Width, (int)Height, originX, originY);
|
|
|
|
|
var parentTransform = ParentOriginTransform(transformed);
|
2019-08-29 20:33:23 +00:00
|
|
|
|
|
2019-09-06 23:12:39 +00:00
|
|
|
|
return new CustomRectangle(
|
|
|
|
|
parentTransform.X,
|
|
|
|
|
parentTransform.Y,
|
|
|
|
|
parentTransform.Z,
|
|
|
|
|
parentTransform.W);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//Get the previous transform from the parent origin
|
|
|
|
|
private Vector4 ParentOriginTransform(Vector4 points)
|
|
|
|
|
{
|
|
|
|
|
//Dont shift the root or the first child of the root
|
|
|
|
|
//The parent setting shouldn't be set, but it doesn't hurt to do this
|
|
|
|
|
if (IsRoot || ParentIsRoot || Parent == null)
|
|
|
|
|
return points;
|
2019-08-29 20:33:23 +00:00
|
|
|
|
|
2019-09-06 23:12:39 +00:00
|
|
|
|
var transformedPosition = TransformOrientationPosition((int)Parent.Width, (int)Parent.Height, ParentOriginX, ParentOriginY);
|
|
|
|
|
var transformed = ShiftRectangle(transformedPosition, points);
|
|
|
|
|
if (Parent != null)
|
|
|
|
|
return Parent.ParentOriginTransform(transformed);
|
2019-08-29 20:33:23 +00:00
|
|
|
|
|
2019-09-06 23:12:39 +00:00
|
|
|
|
return transformed;
|
|
|
|
|
}
|
2019-08-29 20:33:23 +00:00
|
|
|
|
|
2019-09-06 23:12:39 +00:00
|
|
|
|
private static Vector4 ShiftRectangle(Vector2 position, Vector4 points)
|
|
|
|
|
{
|
|
|
|
|
int left = points[0] + position.X;
|
|
|
|
|
int right = points[1] + position.X;
|
|
|
|
|
int top = points[2] + position.Y;
|
|
|
|
|
int bottom = points[3] + position.Y;
|
|
|
|
|
return new Vector4(left, right, top, bottom);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static Vector2 TransformOrientationPosition(int Width, int Height, OriginX originX, OriginY originY)
|
|
|
|
|
{
|
|
|
|
|
int x = 0;
|
|
|
|
|
int y = 0;
|
|
|
|
|
|
|
|
|
|
if (originX == OriginX.Left)
|
|
|
|
|
x = -(Width / 2);
|
|
|
|
|
else if (originX == OriginX.Right)
|
|
|
|
|
x = (Width / 2);
|
|
|
|
|
|
|
|
|
|
if (originY == OriginY.Top)
|
|
|
|
|
y = Height / 2;
|
|
|
|
|
else if (originY == OriginY.Bottom)
|
|
|
|
|
y = -(Height / 2);
|
|
|
|
|
|
|
|
|
|
return new Vector2(x,y);
|
2019-08-29 20:33:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-09-06 23:12:39 +00:00
|
|
|
|
private static Vector4 TransformOrientation(int Width, int Height, OriginX originX, OriginY originY)
|
2019-08-29 20:33:23 +00:00
|
|
|
|
{
|
|
|
|
|
int left = 0;
|
|
|
|
|
int right = 0;
|
|
|
|
|
int top = 0;
|
|
|
|
|
int bottom = 0;
|
|
|
|
|
|
|
|
|
|
if (originX == OriginX.Left)
|
|
|
|
|
right = Width;
|
|
|
|
|
else if (originX == OriginX.Right)
|
|
|
|
|
left = -Width;
|
|
|
|
|
else //To center
|
|
|
|
|
{
|
|
|
|
|
left = -Width / 2;
|
|
|
|
|
right = Width / 2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (originY == OriginY.Top)
|
2019-09-08 19:15:42 +00:00
|
|
|
|
bottom = -Height;
|
2019-08-29 20:33:23 +00:00
|
|
|
|
else if (originY == OriginY.Bottom)
|
2019-09-08 19:15:42 +00:00
|
|
|
|
top = Height;
|
2019-08-29 20:33:23 +00:00
|
|
|
|
else //To center
|
|
|
|
|
{
|
|
|
|
|
top = -Height / 2;
|
|
|
|
|
bottom = Height / 2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return new Vector4(left, right, top, bottom);
|
|
|
|
|
}
|
2019-09-02 23:48:47 +00:00
|
|
|
|
|
|
|
|
|
public bool IsHit(int X, int Y)
|
|
|
|
|
{
|
2019-09-03 22:58:58 +00:00
|
|
|
|
if ((X > Translate.X) && (X < Translate.X + Width) &&
|
|
|
|
|
(Y > Translate.Y) && (Y < Translate.Y + Height))
|
2019-09-02 23:48:47 +00:00
|
|
|
|
return true;
|
|
|
|
|
else
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2019-08-29 20:33:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-09-09 00:47:19 +00:00
|
|
|
|
public enum FilterMode
|
|
|
|
|
{
|
|
|
|
|
Near = 0,
|
|
|
|
|
Linear = 1
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public enum WrapMode
|
|
|
|
|
{
|
|
|
|
|
Clamp = 0,
|
|
|
|
|
Repeat = 1,
|
|
|
|
|
Mirror = 2
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-29 20:33:23 +00:00
|
|
|
|
public enum OriginX : byte
|
|
|
|
|
{
|
|
|
|
|
Center = 0,
|
|
|
|
|
Left = 1,
|
|
|
|
|
Right = 2
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
public enum OriginY : byte
|
|
|
|
|
{
|
|
|
|
|
Center = 0,
|
|
|
|
|
Top = 1,
|
|
|
|
|
Bottom = 2
|
|
|
|
|
};
|
|
|
|
|
|
2019-09-03 22:58:58 +00:00
|
|
|
|
public interface IUserDataContainer
|
|
|
|
|
{
|
|
|
|
|
UserData UserData { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-09 00:47:19 +00:00
|
|
|
|
public class BxlytTextureRef
|
|
|
|
|
{
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
|
|
|
|
public virtual WrapMode WrapModeU { get; set; }
|
|
|
|
|
public virtual WrapMode WrapModeV { get; set; }
|
|
|
|
|
public virtual FilterMode MinFilterMode { get; set; }
|
|
|
|
|
public virtual FilterMode MaxFilterMode { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-03 22:58:58 +00:00
|
|
|
|
public class UserData : SectionCommon
|
|
|
|
|
{
|
|
|
|
|
public List<UserDataEntry> Entries { get; set; }
|
|
|
|
|
|
|
|
|
|
public UserData()
|
|
|
|
|
{
|
|
|
|
|
Entries = new List<UserDataEntry>();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override void Write(FileWriter writer, BxlytHeader header)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class UserDataEntry
|
|
|
|
|
{
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
public UserDataType Type { get; set; }
|
|
|
|
|
public byte Unknown { get; set; }
|
|
|
|
|
|
|
|
|
|
public object data;
|
|
|
|
|
|
|
|
|
|
public string GetString()
|
|
|
|
|
{
|
|
|
|
|
return (string)data;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public float[] GetFloats()
|
|
|
|
|
{
|
|
|
|
|
return (float[])data;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int[] GetInts()
|
|
|
|
|
{
|
|
|
|
|
return (int[])data;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-03 23:23:04 +00:00
|
|
|
|
public void SetValue(string value)
|
2019-09-03 22:58:58 +00:00
|
|
|
|
{
|
|
|
|
|
data = value;
|
|
|
|
|
Type = UserDataType.String;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void SetValue(float[] value)
|
|
|
|
|
{
|
|
|
|
|
data = value;
|
|
|
|
|
Type = UserDataType.Float;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void SetValue(int[] value)
|
|
|
|
|
{
|
|
|
|
|
data = value;
|
|
|
|
|
Type = UserDataType.Int;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
internal long _pos;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public enum UserDataType : byte
|
|
|
|
|
{
|
|
|
|
|
String,
|
|
|
|
|
Int,
|
|
|
|
|
Float,
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-29 23:01:47 +00:00
|
|
|
|
public class BxlytHeader : IDisposable
|
2019-08-29 20:33:23 +00:00
|
|
|
|
{
|
2019-09-04 18:10:17 +00:00
|
|
|
|
[Browsable(false)]
|
2019-08-30 22:53:45 +00:00
|
|
|
|
public string FileName
|
|
|
|
|
{
|
|
|
|
|
get { return FileInfo.FileName; }
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-04 18:10:17 +00:00
|
|
|
|
[DisplayName("Use Big Endian"), CategoryAttribute("File Settings")]
|
2019-09-01 17:02:48 +00:00
|
|
|
|
public bool IsBigEndian { get; set; }
|
|
|
|
|
|
2019-09-04 18:10:17 +00:00
|
|
|
|
[Browsable(false)]
|
2019-08-29 23:01:47 +00:00
|
|
|
|
internal IFileFormat FileInfo;
|
|
|
|
|
|
2019-09-04 18:10:17 +00:00
|
|
|
|
[Browsable(false)]
|
2019-08-29 20:33:23 +00:00
|
|
|
|
public BasePane RootPane { get; set; }
|
|
|
|
|
|
2019-09-04 18:10:17 +00:00
|
|
|
|
[Browsable(false)]
|
2019-08-29 21:17:24 +00:00
|
|
|
|
public BasePane RootGroup { get; set; }
|
|
|
|
|
|
2019-09-04 18:10:17 +00:00
|
|
|
|
[Browsable(false)]
|
2019-08-29 21:17:24 +00:00
|
|
|
|
public virtual Dictionary<string, STGenericTexture> GetTextures { get; }
|
|
|
|
|
|
2019-09-04 18:10:17 +00:00
|
|
|
|
[Browsable(false)]
|
2019-08-29 21:17:24 +00:00
|
|
|
|
public virtual List<string> Textures { get; }
|
|
|
|
|
|
2019-09-05 20:24:03 +00:00
|
|
|
|
[Browsable(false)]
|
|
|
|
|
public virtual List<string> Fonts { get; }
|
|
|
|
|
|
2019-09-04 18:10:17 +00:00
|
|
|
|
[Browsable(false)]
|
2019-08-29 20:33:23 +00:00
|
|
|
|
internal uint Version;
|
|
|
|
|
|
2019-09-04 18:10:17 +00:00
|
|
|
|
[DisplayName("Version"), CategoryAttribute("File Settings")]
|
2019-08-29 20:33:23 +00:00
|
|
|
|
public string VersionFull
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2019-09-04 18:10:17 +00:00
|
|
|
|
return $"{VersionMajor},{VersionMinor},{VersionMicro},{VersionMicro2}";
|
2019-08-29 20:33:23 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-05 20:24:03 +00:00
|
|
|
|
[Browsable(false)]
|
|
|
|
|
public virtual List<BxlytMaterial> GetMaterials()
|
|
|
|
|
{
|
|
|
|
|
return new List<BxlytMaterial>();
|
|
|
|
|
}
|
2019-08-29 20:33:23 +00:00
|
|
|
|
|
2019-09-04 18:10:17 +00:00
|
|
|
|
[RefreshProperties(RefreshProperties.All)]
|
|
|
|
|
public uint VersionMajor { get; set; }
|
|
|
|
|
[RefreshProperties(RefreshProperties.All)]
|
|
|
|
|
public uint VersionMinor { get; set; }
|
|
|
|
|
[RefreshProperties(RefreshProperties.All)]
|
|
|
|
|
public uint VersionMicro { get; set; }
|
|
|
|
|
[RefreshProperties(RefreshProperties.All)]
|
|
|
|
|
public uint VersionMicro2 { get; set; }
|
2019-08-29 20:33:23 +00:00
|
|
|
|
|
2019-09-04 18:10:17 +00:00
|
|
|
|
internal void SetVersionInfo()
|
2019-08-29 20:33:23 +00:00
|
|
|
|
{
|
2019-09-04 18:10:17 +00:00
|
|
|
|
VersionMajor = Version >> 24;
|
|
|
|
|
VersionMinor = Version >> 16 & 0xFF;
|
|
|
|
|
VersionMicro = Version >> 8 & 0xFF;
|
|
|
|
|
VersionMicro2 = Version & 0xFF;
|
2019-08-29 20:33:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-09-04 18:10:17 +00:00
|
|
|
|
internal uint SaveVersion()
|
2019-08-29 20:33:23 +00:00
|
|
|
|
{
|
2019-09-04 18:10:17 +00:00
|
|
|
|
return VersionMajor << 24 | VersionMinor << 16 | VersionMicro << 8 | VersionMicro2;
|
2019-08-29 20:33:23 +00:00
|
|
|
|
}
|
2019-08-29 23:01:47 +00:00
|
|
|
|
|
|
|
|
|
public void Dispose()
|
|
|
|
|
{
|
|
|
|
|
FileInfo.Unload();
|
|
|
|
|
}
|
2019-08-29 20:33:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-09-05 20:24:03 +00:00
|
|
|
|
public class BxlytMaterial
|
|
|
|
|
{
|
|
|
|
|
[DisplayName("Name"), CategoryAttribute("General")]
|
|
|
|
|
public virtual string Name { get; set; }
|
2019-09-08 19:15:42 +00:00
|
|
|
|
|
|
|
|
|
[Browsable(false)]
|
|
|
|
|
public virtual BxlytShader Shader { get; set; }
|
2019-09-05 20:24:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-09-01 17:02:48 +00:00
|
|
|
|
public class SectionCommon
|
2019-08-29 20:33:23 +00:00
|
|
|
|
{
|
2019-09-08 19:15:42 +00:00
|
|
|
|
[Browsable(false)]
|
2019-09-01 17:02:48 +00:00
|
|
|
|
public virtual string Signature { get; }
|
2019-08-29 20:33:23 +00:00
|
|
|
|
|
2019-09-08 19:15:42 +00:00
|
|
|
|
internal uint SectionSize { get; set; }
|
|
|
|
|
internal long StartPosition { get; set; }
|
2019-08-29 20:33:23 +00:00
|
|
|
|
internal byte[] Data { get; set; }
|
|
|
|
|
|
2019-09-01 21:21:36 +00:00
|
|
|
|
public SectionCommon()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public SectionCommon(string signature)
|
|
|
|
|
{
|
|
|
|
|
Signature = signature;
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-29 20:33:23 +00:00
|
|
|
|
public virtual void Write(FileWriter writer, BxlytHeader header)
|
|
|
|
|
{
|
|
|
|
|
if (Data != null)
|
|
|
|
|
writer.Write(Data);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class CustomRectangle
|
|
|
|
|
{
|
|
|
|
|
public int LeftPoint;
|
|
|
|
|
public int RightPoint;
|
|
|
|
|
public int TopPoint;
|
|
|
|
|
public int BottomPoint;
|
|
|
|
|
|
|
|
|
|
public CustomRectangle(int left, int right, int top, int bottom)
|
|
|
|
|
{
|
|
|
|
|
LeftPoint = left;
|
|
|
|
|
RightPoint = right;
|
|
|
|
|
TopPoint = top;
|
|
|
|
|
BottomPoint = bottom;
|
|
|
|
|
}
|
2019-09-02 23:48:47 +00:00
|
|
|
|
|
|
|
|
|
public float Width
|
|
|
|
|
{
|
|
|
|
|
get { return LeftPoint - RightPoint; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public float Height
|
|
|
|
|
{
|
|
|
|
|
get { return TopPoint - BottomPoint; }
|
|
|
|
|
}
|
2019-08-29 20:33:23 +00:00
|
|
|
|
}
|
2019-08-30 22:53:45 +00:00
|
|
|
|
|
|
|
|
|
public class LayoutDocked : DockContent
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
2019-08-29 20:33:23 +00:00
|
|
|
|
}
|