CaptionButton 列挙体
アセンブリ: System.Windows.Forms (system.windows.forms.dll 内)

Public Enumeration CaptionButton



ControlPaint.DrawCaptionButton メソッドと CaptionButton 列挙体の使用方法を次のコード例に示します。この例を実行するには、次のコードを、Button1 という名前のボタンが配置されているフォームに貼り付けます。なお、対象のフォームは System.Windows.Forms 名前空間と System.Drawing 名前空間をインポートしている必要があります。ボタンの Paint イベントは、この例のイベント処理メソッドに必ず関連付けるようにしてください。
' Handle the Button1 object's Paint Event to create a CaptionButton. Private Sub Button1_Paint(ByVal sender As Object, _ ByVal e As PaintEventArgs) Handles Button1.Paint ' Draw a CaptionButton control using the ClientRectangle ' property of Button1. Make the button a Help button ' with a normal state. ControlPaint.DrawCaptionButton(e.Graphics, Button1.ClientRectangle, _ CaptionButton.Help, ButtonState.Normal) End Sub
// Handle the Button1 object's Paint Event to create a CaptionButton. private void Button1_Paint(object sender, PaintEventArgs e) { // Draw a CaptionButton control using the ClientRectangle // property of Button1. Make the button a Help button // with a normal state. ControlPaint.DrawCaptionButton(e.Graphics, Button1.ClientRectangle, CaptionButton.Help, ButtonState.Normal); }
// Handle the Button1 object's Paint Event to create a CaptionButton. void Button1_Paint( Object^ /*sender*/, PaintEventArgs^ e ) { // Draw a CaptionButton control using the ClientRectangle // property of Button1. Make the button a Help button // with a normal state. ControlPaint::DrawCaptionButton( e->Graphics, Button1->ClientRectangle, CaptionButton::Help, ButtonState::Normal ); }
// Handle the button1 object's Paint Event to create a CaptionButton. private void button1_Paint(Object sender, PaintEventArgs e) { // Draw a CaptionButton control using the ClientRectangle // property of button1. Make the button a Help button // with a normal state. ControlPaint.DrawCaptionButton(e.get_Graphics(), button1.get_ClientRectangle(), CaptionButton.Help, ButtonState.Normal); } //button1_Paint

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からCaptionButton 列挙体を検索する場合は、下記のリンクをクリックしてください。

- CaptionButton 列挙体のページへのリンク