本文整理汇总了VB.NET中System.Workflow.ComponentModel.Design.SequentialWorkflowRootDesigner.ImageRectangle属性的典型用法代码示例。如果您正苦于以下问题:VB.NET SequentialWorkflowRootDesigner.ImageRectangle属性的具体用法?VB.NET SequentialWorkflowRootDesigner.ImageRectangle怎么用?VB.NET SequentialWorkflowRootDesigner.ImageRectangle使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。
在下文中一共展示了SequentialWorkflowRootDesigner.ImageRectangle属性的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的VB.NET代码示例。
示例1: ImageRectangle
Protected Overrides ReadOnly Property ImageRectangle() As Rectangle
Get
Dim Bounds As Rectangle = Me.Bounds
Dim sz As New Size(24, 24)
Dim imageRect As New Rectangle()
imageRect.X = Bounds.Left + ((Bounds.Width - sz.Width) / 2)
imageRect.Y = Bounds.Top + 4
imageRect.Size = sz
Return imageRect
End Get
End Property
开发者ID:VB.NET开发者,项目名称:System.Workflow.ComponentModel.Design,代码行数:14,代码来源:SequentialWorkflowRootDesigner.ImageRectangle