
前田稔(Maeda Minoru)の超初心者のプログラム入門
![]()
![]()
![]()
using System.Diagnostics; |
// listView1
・・・
this.listView1.Font = new System.Drawing.Font(
"MS UI Gothic", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
this.listView1.DoubleClick += new System.EventHandler(this.listView1_DoubleClick);
|
// ListView のダブルクリックで起動
private void listView1_DoubleClick(object sender, EventArgs e)
{
string pass;
ListViewItem itemx = new ListViewItem();
itemx = listView1.SelectedItems[0];
pass = Sel_Dir + itemx.Text;
System.Diagnostics.Process.Start(pass);
}
|
![]()
[Next Chapter ↓] Handler Menu
[Previous Chapter ↑] File Handler