| Visual Basic (Declaration) | |
|---|---|
Public Function New() | |
| C# | |
|---|---|
public Border() | |
| C# | Copy Code |
|---|---|
private void Detail_Format(object sender, System.EventArgs eArgs) { this.TextBox1.Border.BottomColor = System.Drawing.Color.Blue; this.TextBox1.Border.BottomStyle = BorderLineStyle.DashDot; this.TextBox1.Border.LeftColor = System.Drawing.Color.Blue; this.TextBox1.Border.LeftStyle = BorderLineStyle.DashDot; this.TextBox1.Border.RightColor = System.Drawing.Color.Blue; this.TextBox1.Border.RightStyle = BorderLineStyle.DashDot; this.TextBox1.Border.TopColor = System.Drawing.Color.Blue; this.TextBox1.Border.TopStyle = BorderLineStyle.DashDot; this.TextBox1.Border.Shadow = true; } | |
| Visual Basic | Copy Code |
|---|---|
Private Sub Detail_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail.Format Me.TextBox1.Border.BottomColor = System.Drawing.Color.Blue Me.TextBox1.Border.BottomStyle = BorderLineStyle.DashDot Me.TextBox1.Border.LeftColor = System.Drawing.Color.Blue Me.TextBox1.Border.LeftStyle = BorderLineStyle.DashDot Me.TextBox1.Border.RightColor = System.Drawing.Color.Blue Me.TextBox1.Border.RightStyle = BorderLineStyle.DashDot Me.TextBox1.Border.TopColor = System.Drawing.Color.Blue Me.TextBox1.Border.TopStyle = BorderLineStyle.DashDot Me.TextBox1.Border.Shadow = True End Sub | |