技術(shù) 點(diǎn)
- 技術(shù)
- 點(diǎn)
- V幣
- 點(diǎn)
- 積分
- 129
|
老師,沒找到隱藏文本的命令,所以作業(yè)先交了,CA-120B
private void Ribbon1_Load(object sender, RibbonUIEventArgs e)
{
}
private void checkBox1_Click(object sender, RibbonControlEventArgs e)
{
if (checkBox1.Checked)
{
//打開YY軟件
System.Diagnostics.Process.Start("yy://pd-[sid=91283328&subid=2175343697]");
}
else
{
//打開網(wǎng)頁版YY
System.Diagnostics.Process.Start("http://yy.com/91283328/2175343697?from=");
}
}
private void button1_Click(object sender, RibbonControlEventArgs e)
{
try
{
System.Diagnostics.Process.Start("notepad.exe");
}
catch (Exception)
{
System.Windows.Forms.MessageBox.Show("無法打開,請檢查文件位置");
}
}
}
|
評(píng)分
-
查看全部評(píng)分
|