-3
我試圖做一個簡單的應用程序只是爲了給它鏈接,它通過一個地址下載直接鏈接,我必須把名稱文件格式化該目錄地址,所以我想要的東西,使其可以由用戶更改。有什麼建議麼?是用C#編寫一個變量到文件地址的任何方法
private void button1_Click(object sender, EventArgs e)
{
string Link;
Link = textBox1.Text;
if (!Directory.Exists(@"C:\Downloaded_Data"))
{
Directory.CreateDirectory(@"C:\Downloaded_Data");
}
else
{
}
string Dir;
Dir = @"C:\Downloaded_Data\ + txtName + txtFormat";
WebClient wc = new WebClient();
wc.DownloadFile(Link, Dir);
SoundPlayer Play = new SoundPlayer(@"E:\SteamLibrary\SteamApps\common\GarrysMod\garrysmod\sound\thrusters\jet01.wav");
Play.Play();
}
所以我想這txtName
和txtFormat
可你知道我希望他們添加到目錄中的文本框來改變,但我不知道怎麼辦!也許因爲我剛剛開始:)
你的問題是_extremely_不清楚。你問如何連接字符串? – SLaks
或者你想在你的應用中使用[link-like controls](http://msdn.microsoft.com/en-us/magazine/cc188769.aspx)? –