本文整理汇总了VB.NET中System.Windows.Forms.StatusBar.DrawItem事件的典型用法代码示例。如果您正苦于以下问题:VB.NET StatusBar.DrawItem事件的具体用法?VB.NET StatusBar.DrawItem怎么用?VB.NET StatusBar.DrawItem使用的例子?那么恭喜您, 这里精选的事件代码示例或许可以为您提供帮助。您也可以进一步了解该事件所在类System.Windows.Forms.StatusBar 的用法示例。
在下文中一共展示了StatusBar.DrawItem事件的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的VB.NET代码示例。
示例1: StringFormat
Private Sub StatusBar1_DrawItem(ByVal sender As Object, ByVal sbdevent As System.Windows.Forms.StatusBarDrawItemEventArgs) Handles StatusBar1.DrawItem
' Create a StringFormat object to align text in the panel.
Dim sf As New StringFormat()
' Format the String of the StatusBarPanel to be centered.
sf.Alignment = StringAlignment.Center
sf.LineAlignment = StringAlignment.Center
' Draw a black background in owner-drawn panel.
sbdevent.Graphics.FillRectangle(Brushes.Black, sbdevent.Bounds)
' Draw the current date (short date format) with white text in the control's font.
sbdevent.Graphics.DrawString(DateTime.Today.ToShortDateString(), StatusBar1.Font, Brushes.White, _
New RectangleF(sbdevent.Bounds.X, sbdevent.Bounds.Y, _
sbdevent.Bounds.Width, sbdevent.Bounds.Height), sf)
End Sub
开发者ID:VB.NET开发者,项目名称:System.Windows.Forms,代码行数:15,代码来源:StatusBar.DrawItem
示例2: MainClass
' 导入命名空间
Imports System
Imports System.Drawing
Imports System.Windows.Forms
Public Class MainClass
Public Shared Sub Main()
Application.Run(New OwnerDrawnStatusBar())
End Sub
End Class
Public Class OwnerDrawnStatusBar
Inherits System.Windows.Forms.Form
#Region " Windows Form Designer generated code "
Public Sub New()
MyBase.New()
'This call is required by the Windows Form Designer.
InitializeComponent()
'Add any initialization after the InitializeComponent() call
End Sub
'Form overrides dispose to clean up the component list.
Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
If disposing Then
If Not (components Is Nothing) Then
components.Dispose()
End If
End If
MyBase.Dispose(disposing)
End Sub
'Required by the Windows Form Designer
Private components As System.ComponentModel.IContainer
'NOTE: The following procedure is required by the Windows Form Designer
'It can be modified using the Windows Form Designer.
'Do not modify it using the code editor.
Friend WithEvents statusBar1 As System.Windows.Forms.StatusBar
Friend WithEvents statusBarPanel1 As System.Windows.Forms.StatusBarPanel
Friend WithEvents statusBarPanel2 As System.Windows.Forms.StatusBarPanel
<System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
Me.statusBar1 = New System.Windows.Forms.StatusBar()
Me.statusBarPanel1 = New System.Windows.Forms.StatusBarPanel()
Me.statusBarPanel2 = New System.Windows.Forms.StatusBarPanel()
CType(Me.statusBarPanel1, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.statusBarPanel2, System.ComponentModel.ISupportInitialize).BeginInit()
Me.SuspendLayout()
'
'statusBar1
'
Me.statusBar1.Location = New System.Drawing.Point(0, 62)
Me.statusBar1.Name = "statusBar1"
Me.statusBar1.Panels.AddRange(New System.Windows.Forms.StatusBarPanel() {Me.statusBarPanel1, Me.statusBarPanel2})
Me.statusBar1.ShowPanels = True
Me.statusBar1.Size = New System.Drawing.Size(360, 32)
Me.statusBar1.TabIndex = 4
Me.statusBar1.Text = "statusBar1"
'
'statusBarPanel1
'
Me.statusBarPanel1.Text = "Next Panel is OwnerDrawn -->"
Me.statusBarPanel1.Width = 190
'
'statusBarPanel2
'
Me.statusBarPanel2.Style = System.Windows.Forms.StatusBarPanelStyle.OwnerDraw
Me.statusBarPanel2.Text = "statusBarPanel2"
Me.statusBarPanel2.Width = 113
'
'OwnerDrawnStatusBar
'
Me.AutoScaleBaseSize = New System.Drawing.Size(5, 13)
Me.ClientSize = New System.Drawing.Size(360, 94)
Me.Controls.AddRange(New System.Windows.Forms.Control() {Me.statusBar1})
Me.Name = "OwnerDrawnStatusBar"
Me.Text = "OwnerDrawnStatusBar"
CType(Me.statusBarPanel1, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.statusBarPanel2, System.ComponentModel.ISupportInitialize).EndInit()
Me.ResumeLayout(False)
End Sub
#End Region
Private Sub statusBar1_DrawItem(ByVal sender As Object, ByVal sbdevent As System.Windows.Forms.StatusBarDrawItemEventArgs) Handles statusBar1.DrawItem
Dim b As Brush = New SolidBrush(sbdevent.ForeColor)
Dim format As StringFormat = New StringFormat()
format.LineAlignment = StringAlignment.Center
format.Alignment = StringAlignment.Center
sbdevent.Graphics.DrawRectangle(New Pen(sbdevent.BackColor), sbdevent.Bounds)
ControlPaint.DrawButton(sbdevent.Graphics, _
sbdevent.Bounds.Left + 5, _
sbdevent.Bounds.Top + 5, _
sbdevent.Bounds.Width - 10, _
sbdevent.Bounds.Height - 10, _
ButtonState.Normal)
b.Dispose()
End Sub
End Class
开发者ID:VB程序员,项目名称:System.Windows.Forms,代码行数:113,代码来源:StatusBar.DrawItem
注:本文中的System.Windows.Forms.StatusBar.DrawItem事件示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论