/// <summary> /// Create a MessagePanel instance /// </summary> /// <param name="canvasSize">Size of the canvas</param> /// <param name="backgroundColor">Background color of the canvas</param> /// <returns></returns> public MessagePanel CreateMessagePanel(Interop.SizeU canvasSize, UInt32 backgroundColor) { return(new MessagePanel( direct2DPointers: ref direct2DPointers, canvasSize: canvasSize, backgroundColor: backgroundColor )); }
public VerticalMessagePanel(ref Interop.Direct2DPointers direct2DPointers, Interop.SizeU canvasSize, UInt32 backgroundcolor) : base(ref direct2DPointers, canvasSize, backgroundcolor) { }