public static void SetMinWidth(Object obj, Length width) { if (_attachedMinWidths == null) { _attachedMinWidths = new Dictionary <Object, Length>(); } AttachedHelpers.SetAttached(_attachedMinWidths, obj, width); }
public static void SetVAlign(Object obj, AlignItem vAlign) { if (_attachedVAlign == null) { _attachedVAlign = new Dictionary <Object, AlignItem>(); } AttachedHelpers.SetAttached(_attachedVAlign, obj, vAlign); }
public static void SetSkip(Object obj, Boolean skip) { if (_attachedSkip == null) { _attachedSkip = new Dictionary <Object, Boolean>(); } AttachedHelpers.SetAttached(_attachedSkip, obj, skip); }
public static void SetRowSpan(Object obj, Int32 span) { if (_attachedRowSpan == null) { _attachedRowSpan = new Dictionary <Object, Int32>(); } AttachedHelpers.SetAttached(_attachedRowSpan, obj, span); }
public static void SetRow(Object obj, Int32 row) { if (_attachedRow == null) { _attachedRow = new Dictionary <Object, Int32>(); } AttachedHelpers.SetAttached(_attachedRow, obj, row); }
public static void SetCol(Object obj, Int32 col) { if (_attachedColumn == null) { _attachedColumn = new Dictionary <Object, Int32>(); } AttachedHelpers.SetAttached(_attachedColumn, obj, col); }
public static void SetAlign(Object obj, ToolbarAlign aln) { if (_attachedPart == null) { _attachedPart = new Dictionary <Object, ToolbarAlign>(); } AttachedHelpers.SetAttached(_attachedPart, obj, aln); }
public static void SetFill(Object obj, Boolean fill) { if (_attachedFill == null) { _attachedFill = new Dictionary <Object, Boolean>(); } AttachedHelpers.SetAttached(_attachedFill, obj, fill); }
public static Length GetMinWidth(Object obj) { return(AttachedHelpers.GetAttached(_attachedMinWidths, obj)); }
public static GridLength GetWidth(Object obj) { return(AttachedHelpers.GetAttached(_attachedWidths, obj)); }
public static Boolean?GetSkip(Object obj) { return(AttachedHelpers.GetAttached(_attachedSkip, obj)); }
public static Boolean?GetFill(Object obj) { return(AttachedHelpers.GetAttached(_attachedFill, obj)); }
public static AlignItem?GetVAlign(Object obj) { return(AttachedHelpers.GetAttached(_attachedVAlign, obj)); }
public static Int32?GetRowSpan(Object obj) { return(AttachedHelpers.GetAttached(_attachedRowSpan, obj)); }
public static Int32?GetCol(Object obj) { return(AttachedHelpers.GetAttached(_attachedColumn, obj)); }
public static ToolbarAlign GetAlgin(Object obj) { return(AttachedHelpers.GetAttached(_attachedPart, obj)); }
public static VerticalAlign?GetVAlign(Object obj) { return(AttachedHelpers.GetAttached(_attachedVAlign, obj)); }