PowerTools PlusPak for Windows Forms 8.0J
PickingColorEventArgs クラス
メンバ  使用例 

ColorPickerButton.PickingColorイベントのデータを提供します。
構文
Public Class PickingColorEventArgs 
   Inherits System.EventArgs
public class PickingColorEventArgs : System.EventArgs 
解説
このクラスは、ColorPickerButton.PickingColorイベントが発生したときに使用されます。Colorプロパティを使用して、色採取操作中に採取された色を取得できます。
使用例

次のサンプルコードは、この型の使用方法を示します。この例では、ColorPickerButton.PickingColorイベントが発生するとイベントハンドラによってそれが報告されます。イベントハンドラでは、ColorPickerButtonの背景色を採取されたColorに設定しています。

このサンプルコードは、GrapeCity.Win.Containers.GcComboFrameクラスの概要に示されている詳細なコード例の一部を抜粋したものです。その元の例では、最初にcomboBox1からColorPickerButton項目を選択してgcComboFrame1にColorPickerButtonを表示し、次にColorPickerButtonを使用して画面から色を採取できます。

private void ColorPickerButton_PickingColor(object sender, PickingColorEventArgs e)
{
    // Set textBox1's Text property to the picking color.
    this.textBox1.Text = e.Color.ToString();

    // Set ColorPickerButton's background color to the picking color.
    (sender as ColorPickerButton).BackColor = e.Color;
}
Private Sub ColorPickerButton_PickingColor(ByVal sender As Object, ByVal e As PickingColorEventArgs)
    ' Set textBox1's Text property to the picking color.
    Me.textBox1.Text = e.Color.ToString()

    ' Set ColorPickerButton's background color to the picking color.
    TryCast(sender, ColorPickerButton).BackColor = e.Color
End Sub
継承階層

System.Object
   System.EventArgs
      GrapeCity.Win.Common.PickingColorEventArgs

プラットフォーム

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

参照

PickingColorEventArgs メンバ
GrapeCity.Win.Common 名前空間

Send Feedback