System.Windows.Forms.OpenFileDialog
成都網(wǎng)絡(luò)公司-成都網(wǎng)站建設(shè)公司創(chuàng)新互聯(lián)建站十余年經(jīng)驗成就非凡,專業(yè)從事成都做網(wǎng)站、成都網(wǎng)站制作,成都網(wǎng)頁設(shè)計,成都網(wǎng)頁制作,軟文發(fā)稿,廣告投放等。十余年來已成功提供全面的成都網(wǎng)站建設(shè)方案,打造行業(yè)特色的成都網(wǎng)站建設(shè)案例,建站熱線:18980820575,我們期待您的來電!
System.Windows.Forms.SaveFileDialog
System.Windows.Forms.FolderBrowserDialog
以上三個類均能夠很好的解決樓主的需求。
具體的請lz自己查msdn
XPS文件格式經(jīng)常在文件處理應(yīng)用程序中使用。您可以在基于.NET Framework的應(yīng)用程序中使用C?;騐B.NET以編程方式將XPS或OXPS轉(zhuǎn)換為JPG或PNG圖像。
讓我們逐步介紹以下方案,以了解有關(guān)XPS轉(zhuǎn)換的更多信息:
使用C?;騐B.NET將XPS,OXPS轉(zhuǎn)換為JPG圖像
使用C?;騐B.NET將XPS,OXPS轉(zhuǎn)換為PNG圖像
目前,.NET版Aspose.page升級到v20.10版,感興趣的朋友可點擊下載
使用C?;騐B.NET將XPS,OXPS轉(zhuǎn)換為JPG圖像
JPG文件之所以出名是因為它們在所有系統(tǒng)環(huán)境中均受支持。您可以使用C?;騐B.NET以編程方式將XPS或OXPS文件轉(zhuǎn)換為JPG圖像。對于XPS或OXPS到JPG圖像的轉(zhuǎn)換,應(yīng)遵循以下步驟:
加載輸入XPS或OXPS文件
初始化JpegSaveOptions對象
指定要渲染的SmoothingMode,Resolution和PageNumbers
保存輸出的JPG圖像
以下代碼顯示了如何使用C#語言將XPS或OXPS轉(zhuǎn)換為JPG圖像:
// Input file
string inputFileName = dataDir + "input.xps";
//Output file
string outputFileName = dataDir + "XPStoImage_out.jpeg";
// Initialize XPS input stream
using (Stream xpsStream = File.Open(inputFileName, FileMode.Open, FileAccess.Read))
{
// Load XPS document form the stream
XpsDocument document = new XpsDocument(xpsStream, new XpsLoadOptions());
// or load XPS document directly from file. No xpsStream is needed then.
// XpsDocument document = new XpsDocument(inputFileName, new XpsLoadOptions());
// Initialize options object with necessary parameters.
JpegSaveOptions options = new JpegSaveOptions()
{
SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality,
Resolution = 300
};
// Create rendering device for JPG format
ImageDevice device = new ImageDevice();
document.Save(device, options);
// Iterate through document partitions (fixed documents, in XPS terms)
for (int i = 0; i device.Result.Length; i++) // Iterate through partition pages for (int j = 0; j device.Result[i].Length; j++) { // Initialize image output stream using (Stream imageStream = System.IO.File.Open(Path.GetDirectoryName(outputFileName) + Path.GetFileNameWithoutExtension(outputFileName) + "_" + (i + 1) + "_" + (j + 1) + Path.GetExtension(outputFileName), System.IO.FileMode.Create, System.IO.FileAccess.Write)) // Write image imageStream.Write(device.Result[i][j], 0, device.Result[i][j].Length); } }
使用C?;騐B.NET將XPS,OXPS轉(zhuǎn)換為PNG圖像
可能需要使用C?;騐B.NET和Aspose.Page for .NET API將XPS或OXPS文件轉(zhuǎn)換為PNG。您需要按照以下步驟將XPS轉(zhuǎn)換為PNG:
加載輸入XPS或OXPS文件
初始化PngSaveOptions對象
設(shè)置圖像分辨率或頁面編號為渲染
保存輸出的PNG圖像
說明:以下代碼在Microsoft Visual Basic 2005 (簡體中文版)中通過。
創(chuàng)建新項目:
在窗體上添加文本框2個:TextBox1,TextBox2
TextBox1 -- 用來編輯要寫入的文本文件的內(nèi)容,或顯示打開的文本文件的內(nèi)容
TextBox2 -- 用來輸入要打開或要寫入的文件名(包括盤符,路徑)(例如:c:\123.txt)
在窗體上添加2個按鈕:Button1,Button2
Button1 -- 寫入文件
Button2 -- 打開文件
代碼如下:
Imports System.IO
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim w As New StreamWriter(TextBox2.Text)
w.Write(TextBox1.Text)
w.Close()
End Sub
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
Dim r As New StreamReader(TextBox2.Text)
Dim s As String
TextBox1.Text = ""
Do While r.Peek -1 '是否到文件尾
s = r.ReadLine
' MessageBox.Show(r.Peek)
TextBox1.Text = TextBox1.Text s vbCrLf
Loop
r.Close()
End Sub
End Class
補充:你要把讀出的數(shù)據(jù)賦值給一個變量,只要:聲明一個變量為數(shù)值類型,然后只要讀取一行就可以了,把這行數(shù)據(jù)經(jīng)過轉(zhuǎn)換成數(shù)值后賦給這個變量.
vb.net保存后在菜單文件中打開。
在菜單中文件中選擇生成EXE文件,然后打開Exe文件就可以了。
VB.NET是基于.NET框架的完全對向?qū)ο蟮木幊陶Z言,而vb6.0只是半面向?qū)ο蟮恼Z言,使用vb.net可以編制出功能更加強大的windows程序。
添加一個OpenFileDialog控件。
代碼如下:OpenFileDialog1.ShowDialog()‘打開文件選擇框OpenFileDialog1.FileName’得到選擇的文件
Visual Basic.NET是基于微軟.NET Framework之上的面向?qū)ο蟮木幊陶Z言。
其在調(diào)試時是以解釋型語言方式運作,而輸出為EXE程序是是以編譯型語言方式運作。
可以看作是Visual Basic在.Net Framework平臺上的升級版本,增強了對面向?qū)ο蟮闹С?。大多的VB.Net程序員使用Visual Studio .Net作為IDE(integrated development environment).SharpDevelop是另一種可用的開源的IDE。