DesignerGlyph.CanBeActivated プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
DesignerGlyph が、自身が関連付けられている ActivityDesigner にフォーカスを獲得できるかどうかを示す値を取得します。
public:
virtual property bool CanBeActivated { bool get(); };
public virtual bool CanBeActivated { get; }
member this.CanBeActivated : bool
Public Overridable ReadOnly Property CanBeActivated As Boolean
プロパティ値
デザイナーのグリフをアクティブにできる場合は true
。それ以外の場合は false
。 既定値は、false
です。
例
CanBeActivated プロパティの実装例を次に示します。 この例は、追跡プロファイル デザイナーの SDK サンプルです。 詳細については、「 追跡プロファイル デザイナーのサンプル」を参照してください。
/// <summary>
/// This glyph shows that the activity's track point is not correctly configured
/// </summary>
internal sealed class ErrorActivityGlyph : DesignerGlyph
{
static Bitmap image = Resources.error;
string errorMessage;
internal ErrorActivityGlyph(string errorMessage)
{
this.errorMessage = errorMessage;
}
public override bool CanBeActivated
{
get
{
return true;
}
}
/// <summary>
/// Display an error message when this glyph is clicked
/// </summary>
/// <param name="designer"></param>
protected override void OnActivate(ActivityDesigner designer)
{
MessageBox.Show(errorMessage);
}
public override Rectangle GetBounds(ActivityDesigner designer, bool activated)
{
Rectangle imageBounds = new Rectangle();
if (image != null)
{
imageBounds.Size = image.Size;
imageBounds.Location = new Point(designer.Bounds.Right - imageBounds.Size.Width / 4, designer.Bounds.Top - imageBounds.Size.Height / 2);
}
return imageBounds;
}
protected override void OnPaint(Graphics graphics, bool activated, AmbientTheme ambientTheme, ActivityDesigner designer)
{
image.MakeTransparent(Color.FromArgb(255, 255, 255));
if (image != null)
{
graphics.DrawImage(image, GetBounds(designer, activated), new Rectangle(Point.Empty, image.Size), GraphicsUnit.Pixel);
}
}
}
' This glyph shows that the activity's track point is not correctly configured
Friend NotInheritable Class ErrorActivityGlyph
Inherits DesignerGlyph
Shared image As Bitmap = Resources.errorIcon
Dim errorMessage As String
Friend Sub New(ByVal errorMessage As String)
Me.errorMessage = errorMessage
End Sub
Public Overrides ReadOnly Property CanBeActivated() As Boolean
Get
Return True
End Get
End Property
' Display an error message when this glyph is clicked
Protected Overrides Sub OnActivate(ByVal designer As ActivityDesigner)
MessageBox.Show(errorMessage)
End Sub
Public Overrides Function GetBounds(ByVal designer As ActivityDesigner, ByVal activated As Boolean) As Rectangle
Dim imageBounds As New Rectangle()
If image IsNot Nothing Then
imageBounds.Size = image.Size
imageBounds.Location = New Point(designer.Bounds.Right - imageBounds.Size.Width / 4, designer.Bounds.Top - imageBounds.Size.Height / 2)
End If
Return imageBounds
End Function
Protected Overrides Sub OnPaint(ByVal graphics As Graphics, ByVal activated As Boolean, ByVal ambientTheme As AmbientTheme, ByVal designer As ActivityDesigner)
image.MakeTransparent(Color.FromArgb(255, 255, 255))
If image IsNot Nothing Then
graphics.DrawImage(image, GetBounds(designer, activated), New Rectangle(Point.Empty, image.Size), GraphicsUnit.Pixel)
End If
End Sub
End Class
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET