コード例 #1
0
 public static StyleValue <LengthHint> GetHeightHint(this CoreUIDomElement element) => element.Style.Height.ValueKind switch
 {
コード例 #2
0
 public static StyleValue <LengthHint> GetWidthHint(this CoreUIDomElement element) => element.Style.Width.ValueKind switch
 {
コード例 #3
0
ファイル: CoreUIDomDocument.cs プロジェクト: JeyDotC/CoreUI
 public CoreUIDomDocument(ICoreUIDrawContext context, CoreUIDomElement body)
 {
     _context = context;
     Body     = body;
     Add(body);
 }