本文整理匯總了C#中System.Windows.Forms.CheckBox.DrawToBitmap方法的典型用法代碼示例。如果您正苦於以下問題:C# CheckBox.DrawToBitmap方法的具體用法?C# CheckBox.DrawToBitmap怎麽用?C# CheckBox.DrawToBitmap使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類System.Windows.Forms.CheckBox
的用法示例。
在下文中一共展示了CheckBox.DrawToBitmap方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: getCheckBoxImage
/// <summary>
/// 獲取複選框的圖像
/// </summary>
/// <param name="isChecked">true為選中的樣式,false為未選中的樣式</param>
/// <returns></returns>
private Image getCheckBoxImage(bool isChecked)
{
if (isChecked && this.checkedCheckBoxImage != null)
{
return checkedCheckBoxImage;
}
else if (!isChecked && this.uncheckedCheckBoxImage != null)
{
return uncheckedCheckBoxImage;
}
CheckBox chk = new CheckBox();
chk.Checked = isChecked;
chk.Text = "";
chk.Margin = new Padding(3, 3, 3, 3);
chk.Width = 14;
chk.Height = 14;
chk.BackColor = Color.Transparent;
Bitmap bitmap = new Bitmap(chk.Width, chk.Height);
Rectangle rect = new Rectangle(0, 0, bitmap.Width, bitmap.Height);
chk.DrawToBitmap(bitmap, rect);
if (isChecked)
{
checkedCheckBoxImage = bitmap;
}
else
{
uncheckedCheckBoxImage = bitmap;
}
return bitmap;
}