영문화완료
This commit is contained in:
@@ -70,7 +70,7 @@ namespace ResultView.Dialog
|
||||
|
||||
if (this.tbInput.SelectionLength > 0)
|
||||
{
|
||||
//특정영역이 선택되었다
|
||||
//A specific area has been selected
|
||||
var head = tbInput.Text.Substring(0, tbInput.SelectionStart);
|
||||
var tail = tbInput.Text.Substring(tbInput.SelectionLength + tbInput.SelectionStart);
|
||||
tbInput.Text = head + tail;
|
||||
@@ -121,7 +121,7 @@ namespace ResultView.Dialog
|
||||
|
||||
private void button2_Click(object sender, EventArgs e)
|
||||
{
|
||||
//앞에서 삭제
|
||||
//Delete from front
|
||||
if (this.tbInput.Text.Length < 1) return;
|
||||
if (this.tbInput.Text.Length < 2) tbInput.Text = string.Empty;
|
||||
else tbInput.Text = tbInput.Text.Substring(1);
|
||||
@@ -131,7 +131,7 @@ namespace ResultView.Dialog
|
||||
|
||||
private void button3_Click(object sender, EventArgs e)
|
||||
{
|
||||
//두에서 삭제
|
||||
//Delete from back
|
||||
if (this.tbInput.Text.Length < 1) return;
|
||||
if (this.tbInput.Text.Length < 2) tbInput.Text = string.Empty;
|
||||
else tbInput.Text = tbInput.Text.Substring(0, tbInput.Text.Length - 1);
|
||||
|
||||
Reference in New Issue
Block a user