扫一扫
分享文章到微信
扫一扫
关注官方公众号
至顶头条
作者:阿虎 来源:天极开发者网络 2007年11月9日
关键字:
组件类型 | 组件名称 | 属性 | 设置结果 |
Form | Form1 | Text | 全面掌握对话框 |
MaximizeBox | False | ||
FormBorderStyle | FixedSingle | ||
Button | Button1 | Text | 打开 |
FlatStyle | Flat | ||
Button | Button2 | Text | 保存 |
Button2 | FlatStyle | Flat | |
Button | Button3 | Text | 字体 |
FlatStyle | Flat | ||
Button | Button4 | Text | 颜色 |
FlatStyle | Flat |
Imports System.IO |
Private Sub Button1_Click ( ByVal sender As System.Object , ByVal e As System.EventArgs ) Handles Button1.Click Dim strFileName As String ' 设定打开文件对话框的属性 With OpenFileDialog1 .Filter = "Text files ( *.txt )|*.txt" .InitialDirectory = "C:" .Title = "打开文件对话框" End With '以下是打开文本文件,并通过文本框显示出来 If OpenFileDialog1.ShowDialog ( ) = DialogResult.OK Then strFileName = OpenFileDialog1.FileName Dim objReader As StreamReader = New StreamReader ( strFileName , System.Text.Encoding.Default ) TextBox1.Text = objReader.ReadToEnd ( ) objReader.Close ( ) objReader = Nothing End If End Sub Private Sub Button2_Click ( ByVal sender As System.Object , ByVal e As System.EventArgs ) Handles Button2.Click Dim strFileName As String '设定文件保存对话框的属性 With SaveFileDialog1 .DefaultExt = "txt" .FileName = strFileName .Filter = "Text files ( *.txt )|*.txt" .FilterIndex = 1 .InitialDirectory = "C:\" .OverwritePrompt = True .Title = "文件保存对话框" End With '以下是把文本框中的文字另保存为文本文件 If SaveFileDialog1.ShowDialog ( ) = DialogResult.OK Then strFileName = SaveFileDialog1.FileName Dim objWriter As StreamWriter =New StreamWriter ( strFileName , False , System.Text.Encoding.Default ) objWriter.Write ( TextBox1.Text ) objWriter.Close ( ) objWriter = Nothing End If End Sub Private Sub Button3_Click ( ByVal sender As System.Object , ByVal e As System.EventArgs ) Handles Button3.Click ' 设定字体对话框的属性 FontDialog1.ShowColor = True '显示字体对话框,并判断十分单击对话框中的"确定"按钮 If FontDialog1.ShowDialog ( ) = DialogResult.OK Then TextBox1.Font = FontDialog1.Font '设定文本框的字体 TextBox1.ForeColor = FontDialog1.Color '设定文本框的前景色 End If End Sub Private Sub Button4_Click ( ByVal sender As System.Object , ByVal e As System.EventArgs ) Handles Button4.Click If ColorDialog1.ShowDialog ( ) = DialogResult.OK Then TextBox1.BackColor = ColorDialog1.Color '设定文本框的背景色 End If End Sub |
如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。
现场直击|2021世界人工智能大会
直击5G创新地带,就在2021MWC上海
5G已至 转型当时——服务提供商如何把握转型的绝佳时机
寻找自己的Flag
华为开发者大会2020(Cloud)- 科技行者