PowerTools InputMan for Windows Forms 8.0J
BackgroundImage プロパティ (EditBase)
使用例 

コントロールに表示する背景画像を取得または設定します。
構文
Public Overrides Property BackgroundImage As Image
public override Image BackgroundImage {get; set;}

プロパティ値

コントロールに表示する背景画像を指定するImageオブジェクト。 既定値はNothingです。
解説
半透明の色または透過色を使った画像は、背景画像として適切に表示されません。
使用例
背景画像を設定した GcMask コントロールを作成するコード例を次に示します。この例では他に BackgroundImage と BackgroundImageLayout プロパティを使用しています。
//  Please use the following namespace
//  using System.Windows.Forms;
//  using System.Drawing;
//  using GrapeCity.Win.Editors;

public void SetBackgroundImageSettings()
{
    // Create an instance of a GcMask control.
    GcMask gcMask1 = new GcMask();
    // Sets the BackgroundImage property.
    gcMask1.BackgroundImage = new Bitmap(@"C:\Documents and Settings\All Users\Documents\My Pictures\Sample Pictures\Water lilies.jpg");
    // Sets the BackgroundImageLayout property for displaying the Image to center.
    gcMask1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
}
'  Please use the following namespace
'  Imports System.Windows.Forms;
'  Imports System.Drawing;
'  Imports GrapeCity.Win.Editors;

Public Sub SetBackgroundImageSettings()
    ' Create an instance of a GcMask control.
    Dim gcMask1 As New GcMask()
    ' Sets the BackgroundImage property.
    gcMask1.BackgroundImage = New Bitmap("C:\Documents and Settings\All Users\Documents\My Pictures\Sample Pictures\Water lilies.jpg")
    ' Sets the BackgroundImageLayout property for displaying the Image to center.
    gcMask1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center
End Sub
参照

EditBase クラス
EditBase メンバ
BackgroundImageLayout プロパティ

 

 


© 2004-2015 GrapeCity inc. All rights reserved.