GrapeCity.Win.Common 名前空間 : PickingColorEventArgs クラス |
Public Class PickingColorEventArgs Inherits System.EventArgs
public class PickingColorEventArgs : System.EventArgs
次のサンプルコードは、この型の使用方法を示します。この例では、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