using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Diagnostics;
namespace onScreenKeyboard
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
System.Diagnostics.Process ps = new System.Diagnostics.Process();
ps.StartInfo.FileName = "osk.exe";
ps.Start();
textBox1.Focus();
}
}
}
입니다. 이때 만약 실행시킨 프로세스를 닫으실려면
ps.kill()이라는 메소드를 호출하셔야합니다
c# Task 7가지 사용법 (0) | 2021.01.04 |
---|---|
특정 소수점 자리 이하 올림, 버림, 반올림 (0) | 2019.11.20 |
특수문자 포함여부 (0) | 2019.03.06 |
클라이언트 IP 추출 (0) | 2019.01.15 |
Ping 테스트 방법 (0) | 2018.09.06 |