本文整理汇总了C#中System.Windows.Forms.VisualStyles.VisualStyleRenderer.DrawImage方法的典型用法代码示例。如果您正苦于以下问题:C# VisualStyleRenderer.DrawImage方法的具体用法?C# VisualStyleRenderer.DrawImage怎么用?C# VisualStyleRenderer.DrawImage使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Windows.Forms.VisualStyles.VisualStyleRenderer
的用法示例。
在下文中一共展示了VisualStyleRenderer.DrawImage方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: DrawTabItem
public static void DrawTabItem (Graphics g, Rectangle bounds, string tabItemText, Font font, TextFormatFlags flags, Image image, Rectangle imageRectangle, bool focused, TabItemState state)
{
if (!IsSupported)
throw new InvalidOperationException ();
VisualStyleRenderer vsr;
switch (state) {
case TabItemState.Disabled:
vsr = new VisualStyleRenderer (VisualStyleElement.Tab.TabItem.Disabled);
break;
case TabItemState.Hot:
vsr = new VisualStyleRenderer (VisualStyleElement.Tab.TabItem.Hot);
break;
case TabItemState.Normal:
default:
vsr = new VisualStyleRenderer (VisualStyleElement.Tab.TabItem.Normal);
break;
case TabItemState.Selected:
vsr = new VisualStyleRenderer (VisualStyleElement.Tab.TabItem.Pressed);
break;
}
vsr.DrawBackground (g, bounds);
if(image != null)
vsr.DrawImage(g, imageRectangle, image);
bounds.Offset(3,3);
bounds.Height -= 6;
bounds.Width -= 6;
if(tabItemText != String.Empty)
TextRenderer.DrawText(g, tabItemText, font, bounds, SystemColors.ControlText,flags);
if(focused)
ControlPaint.DrawFocusRectangle(g, bounds);
}