分享
 
 
 

ASP.NET窗体对话框的实现

王朝asp·作者佚名  2006-11-24
窄屏简体版  字體: |||超大  

窗体对话框组件与微软视窗操作系统中的对话框是一样的;也就是说,PrintDialog 组件是“打印”对话框,OpenFileDialog 组件是 “打开文件”对话框,依此类推。

与以往的 Microsoft Visual Basic 6.0 等 Windows 程序设计语言相似,.NET 框架提供了 Windows 用户耳熟能详的对话框。对话框的具体用途(如 Printdialog 可用于文件打印等)通常是多种多样的。故而在 .NET 框架提供的基础类中不包含用于文件打印、颜色选择等具体操作的代码,而你却可以根据应用程序的需要灵活地实现它们。因此,在 .NET 框架下,你不但可以直接应用标准对话框,而且能根据用户的选择作出不同的响应。本文提供的代码其用途就在于此。

注意,关于各种对话框的属性、方法和事件的完整描述,可以在相应类的 Members 页面中找到。比如要查看 OpenFileDialog 组件的某一方法,就可以在文档索引的“OpenFileDialog class, all members”栏目中找到相关的主题。

OpenFileDialog 组件

OpenFileDialog 对话框使得用户能够通过浏览本地或者远程的文件系统以打开所选文件。它将返回文件路径和所选的文件名。

OpenFileDialog 组件和 SaveFileDialog 组件(下文将会详细描述)包含了用于浏览和选取文件所必需的基本代码。有了它们,你就不必为这些功能编写任何代码,进而能够专心实现打开或者保存文件等具体操作。

注意,FileDialog 类的 FilterIndex 属性(由于继承的原因,为 OpenFileDialog 和 SaveFileDialog 类所共有) 使用 one-based 索引(译者注:指从 1 开始编号的索引)。 此特性将在下文的代码中用到(并且会在相应位置再次强调)。当应用程序通过类型过滤器打开文件时,或者需要保存为特定格式的文件(比如:保存为纯文本文件而不是二进制文件)时,这一点是非常重要的。人们在使用 FilterIndex 属性时却经常忘了它,因此现在务必要把它记住。

下列代码通过 Button 控件的 Click 事件调用 OpenFileDialog 组件。当用户选中某个文件,并且单击 OK 的时候,所选的文件将被打开。在本例中,文件内容将被显示在消息框内,以证实文件流被读入。

本例假设存在名为 Button1 的 Button 控件和名为 OpenFileDialog1 的 OpenFileDialog 控件。

' Visual Basic

' NOTE: You must import the following namespace:

' Imports System.IO

' Without this import statement at the beginning

' of your code, the example will not function.

Private Sub Button1_Click(ByVal sender As System.Object, _

ByVal e As System.EventArgs) Handles Button1.Click

If OpenFileDialog1.ShowDialog() = DialogResult.OK Then

Dim sr As New StreamReader(OpenFileDialog1.FileName)

MessageBox.Show(sr.ReadToEnd)

sr.Close()

End If

End Sub

// C#

// NOTE: You must import the following namespace:

// using System.IO;

// Without this import statement at the beginning

// of your code, the example will not function.

private void button1_Click(object sender, System.EventArgs e)

{

if(openFileDialog1.ShowDialog() == DialogResult.OK)

{

StreamReader sr = new StreamReader(openFileDialog1.FileName);

MessageBox.Show(sr.ReadToEnd());

sr.Close();

}

}

打开文件还可以使用 OpenFileDialog 组件的 OpenFile 方法,它将返回文件的每一个字节。在下面的例子中,一个 OpenFileDialog 组件将被实例化,它使用了 cursor 过滤器,以限定用户只能选取光标文件(扩展名为 .cur)。一旦某个 .cur 文件被选中,窗体的光标就被设成该文件描绘的光标形状。

本例假设存在名为 Button1 的 Button 控件。

' Visual Basic

Private Sub Button1_Click(ByVal sender As System.Object, _

ByVal e As System.EventArgs) Handles Button1.Click

' Display an OpenFileDialog so the user can select a Cursor.

Dim openFileDialog1 As New OpenFileDialog()

openFileDialog1.Filter = "Cursor Files|*.cur"

openFileDialog1.Title = "Select a Cursor File"

' Show the Dialog.

' If the user clicked OK in the dialog and

' a .CUR file was selected, open it.

If openFileDialog1.ShowDialog() = DialogResult.OK Then

If openFileDialog1.FileName <> "" Then

' Assign the cursor in the Stream to the Form's Cursor property.

Me.Cursor = New Cursor(openFileDialog1.OpenFile())

End If

End If

End Sub

// C#

private void button1_Click(object sender, System.EventArgs e)

{

// Display an OpenFileDialog so the user can select a Cursor.

OpenFileDialog openFileDialog1 = new OpenFileDialog();

openFileDialog1.Filter = "Cursor Files|*.cur";

openFileDialog1.Title = "Select a Cursor File";

// Show the Dialog.

// If the user clicked OK in the dialog and

// a .CUR file was selected, open it.

if (openFileDialog1.ShowDialog() == DialogResult.OK)

{

if(openFileDialog1.FileName != "")

{

// Assign the cursor in the Stream to the Form's Cursor property.

this.Cursor = new Cursor(openFileDialog1.OpenFile());

}

}

}

关于读取文件流的进一步信息,请参阅FileStream.BeginRead 方法。

SaveFileDialog 组件

本对话框允许用户浏览文件系统并且选取将被写入的文件。当然,你还必须为文件写入编写具体代码。

下列代码通过 Button 控件的 Click 事件调用 SaveFileDialog 组件。当用户选中某个文件,并且单击 OK 的时候,RichTextBox 控件里的内容将被保存到所选的文件中。

本例假设存在名为 Button1 的 Button 控件,名为 RichTextBox1 的 RichTextBox 控件和名为 OpenFileDialog1 的 SaveFileDialog 控件。

' Visual Basic

' NOTE: You must import the following namespace:

' Imports System.IO

' Without this import statement at the beginning

' of your code, the code example will not function.

Private Sub Button1_Click(ByVal sender As System.Object, _

ByVal e As System.EventArgs) Handles Button1.Click

If SaveFileDialog1.ShowDialog() = DialogResult.OK Then

RichTextBox1.SaveFile(SaveFileDialog1.FileName, _

RichTextBoxStreamType.PlainText)

End If

End Sub

// C#

// NOTE: You must import the following namespace:

// using System.IO;

// Without this import statement at the beginning

// of your code, the code example will not function.

private void button1_Click(object sender, System.EventArgs e)

{

if((saveFileDialog1.ShowDialog() == DialogResult.OK)

{

richTextBox1.SaveFile(saveFileDialog1.FileName, RichTextBoxStreamType.PlainText);

}

}

保存文件还可以用 SaveFileDialog 组件的 OpenFile 方法,它将提供一个用于写入的 Stream 对象。

在下面的例子中,有一个包含图片的 Button 控件。 当你单击这个按钮的时候,一个 SaveFileDialog 组件将被打开,它将使用 .gif 、 .jpeg 和 .bmp 类型的文件过滤器。一旦用户通过 Save File 对话框内选中此类文件,按钮上的图片将被存入其中。

本例假设存在名为 Button2 的 Button 控件,并且它的 Image 属性被设为某个扩展名为 .gif 、 .jpeg 或者 .bmp 的图片文件。

'Visual Basic

' NOTE: You must import the following namespaces:

' Imports System.IO

' Imports System.Drawing.Imaging

' Without these import statements at the beginning of your code,

' the code example will not function.

Private Sub Button2_Click(ByVal sender As System.Object, _

ByVal e As System.EventArgs) Handles Button2.Click

' Display an SaveFileDialog so the user can save the Image

' assigned to Button2.

Dim saveFileDialog1 As New SaveFileDialog()

saveFileDialog1.Filter = "JPeg Image|*.jpg|Bitmap Image|*.bmp|Gif Image|*.gif"

saveFileDialog1.Title = "Save an Image File"

saveFileDialog1.ShowDialog()

' If the file name is not an empty string open it for saving.

If saveFileDialog1.FileName <> "" Then

' Save the Image via a FileStream created by the OpenFile method.

Dim fs As FileStream = CType(saveFileDialog1.OpenFile(), FileStream)

' Save the Image in the appropriate ImageFormat based upon the

' file type selected in the dialog box.

' NOTE that the FilterIndex property is one-based.

Select Case saveFileDialog1.FilterIndex

Case 1

Me.button2.Image.Save(fs, ImageFormat.Jpeg)

Case 2

Me.button2.Image.Save(fs, ImageFormat.Bmp)

Case 3

Me.button2.Image.Save(fs, ImageFormat.Gif)

End Select

fs.Close()

End If

End Sub

// C#

// NOTE: You must import the following namespaces:

// using System.IO;

// using System.Drawing.Imaging;

// Without these import statements at the beginning of your code,

// the code example will not function.

private void button2_Click(object sender, System.EventArgs e)

{

// Display an SaveFileDialog so the user can save the Image

// assigned to Button2.

SaveFileDialog saveFileDialog1 = new SaveFileDialog();

saveFileDialog1.Filter = "JPeg Image|*.jpg|Bitmap Image|*.bmp|Gif Image|*.gif";

saveFileDialog1.Title = "Save an Image File";

saveFileDialog1.ShowDialog();

// If the file name is not an empty string open it for saving.

if(saveFileDialog1.FileName != "")

{

// Save the Image via a FileStream created by the OpenFile method.

FileStream fs = (FileStream)saveFileDialog1.OpenFile();

// Save the Image in the appropriate ImageFormat based upon the

// File type selected in the dialog box.

// NOTE that the FilterIndex property is one-based.

switch(saveFileDialog1.FilterIndex)

{

case 1 :

this.button2

[1] [2] 下一页

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有