PowerTools PlusPak for Windows Forms 8.0J
GetColorFromScreen メソッド
使用例 

画面のSystem.Drawing.Point
画面の指定した位置の色を取得します。
構文
Public Function GetColorFromScreen( _
   ByVal screenPoint As Point _
) As Color
public Color GetColorFromScreen( 
   Point screenPoint
)

パラメータ

screenPoint
画面のSystem.Drawing.Point

戻り値の型

指定した位置のSystem.Drawing.Color
使用例

次のサンプルコードは、このメソッドを使用して画面の位置から色を取得する方法を示します。この例では、SelectedColorが現在のマウスの位置にある色に設定されます。このサンプルコードを実行するには、以下のコードをSystem.Windows.Forms.Formプロジェクトに追加し、ここで作成したメソッドをコンストラクターまたはフォーム上の別のメソッドから呼び出します。

private void CreateGcColorPickerToGetColor()
{
    // Create an instance of GcColorPicker control.
    GcColorPicker gcColorPicker = new GcColorPicker();

    // Initialize the Name and Location of the gcColorPicker.
    gcColorPicker.Name = "gcColorPicker";
    gcColorPicker.Location = new Point(10, 50);

    // Set the SelectedColor to the color at the location of the mouse.
    gcColorPicker.SelectedColor = gcColorPicker.GetColorFromScreen(Control.MousePosition);

    // adds gcColorPicker to the form.
    this.Controls.Add(gcColorPicker);
}
Private Sub CreateGcColorPickerToGetColor()
    ' Create an instance of GcColorPicker control.
    Dim gcColorPicker As New GcColorPicker()

    ' Initialize the Name and Location of the gcColorPicker.
    gcColorPicker.Name = "gcColorPicker"
    gcColorPicker.Location = New Point(10, 50)

    ' Set the SelectedColor to the color at the location of the mouse.
    gcColorPicker.SelectedColor = gcColorPicker.GetColorFromScreen(Control.MousePosition)

    ' adds gcColorPicker to the form.
    Me.Controls.Add(gcColorPicker)
End Sub
プラットフォーム

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

参照

GcColorPicker クラス
GcColorPicker メンバ

Send Feedback