示例#1
0
 /// <summary>
 /// Draws the background of the VirtualKeyboard.
 /// </summary>
 /// <param name="args">Provides context information.</param>
 public abstract void DrawBackground(BackgroundRendererEventArgs args);
示例#2
0
 /// <summary>
 /// Draws the background of a VirtualKeyboard.
 /// </summary>
 /// <param name="args">Provides context information.</param>
 public override void DrawBackground(BackgroundRendererEventArgs args)
 {
     if (ColorTable != null)
         args.Graphics.FillRectangle(ColorTable.BackgroundBrush, args.ClipRectangle);
 }