把自己做的C# winform应用程序打包为.exe安装程序怎么做?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了把自己做的C# winform应用程序打包为.exe安装程序怎么做?相关的知识,希望对你有一定的参考价值。

我自己做的项目是winform项目,如何把这个项目打包成.exe安装文件,求详细的操作步骤,不要复制网上的那些搓代码。没用,我试过了。谢谢。

参考技术A 新建项目
-->
安装与部署
------>然后把你写的程序的Debug目录下的所有文件全部拖到应用程序文件夹里面
---->
生成.就OK了,其他的什么安装时候显示的话语呀,图片之类的东西,你自己慢慢去研究吧.

C# winform 程序,在用SaveFileDialog选择完路径后,主界面如何置顶?

没法置顶,
选完路径点了确定之后SaveFileDialog关闭,点确定的事件中你可以把路径记录在其他地方不一定非得确定就保存.
参考技术A SaveFileDialog实际是个模态窗体,所以主界面无法置顶;
如果你非要达到这样的效果,自己做一个类似SaveFileDialog的窗体。
参考技术B StreamWriter writer;
StreamReader reader;
FileStream fs;
private void openBtn_Click(object sender, System.EventArgs e)

string theFile;
openFileDialog1.InitialDirectory=Application.ExecutablePath;
openFileDialog1.Filter="word Files(*.doc)|*.doc|All Files(*.*)|*.*";
if (openFileDialog1.ShowDialog()==DialogResult.OK )

theFile=openFileDialog1.FileName;
try

fs=new FileStream(theFile,FileMode.Open);
reader=new StreamReader(fs);
textBox1.Text=reader.ReadToEnd();

catch(Exception excep)

MessageBox.Show(excep.Message);

finally

reader.Close();
fs.Close();




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

string theFile;
saveFileDialog1.InitialDirectory=Application.ExecutablePath;
saveFileDialog1.Filter="word Files(*.doc)|*.doc|All Files(*.*)|*.*";
saveFileDialog1.OverwritePrompt=true;
saveFileDialog1.ShowDialog();
theFile=saveFileDialog1.FileName;
try

fs=new FileStream(theFile,FileMode.Create);
writer=new StreamWriter(fs);
writer.Write(textBox1.Text);

catch (Exception excep)

MessageBox.Show(excep.Message);

finally

writer.Flush();
writer.Close();
fs.Close();


你试一下

以上是关于把自己做的C# winform应用程序打包为.exe安装程序怎么做?的主要内容,如果未能解决你的问题,请参考以下文章

C# Winform 生成安装软件

C# 做的winform窗体程序把一个Form给为自定义控件?

C# Winform项目打包问题

C# winform 程序,在用SaveFileDialog选择完路径后,主界面如何置顶?

c# winform 打包问题

C# Winform打包部署时添加注册表信息实现开机启动.