cmmhelpform.cs
来自「关于CMM语言的解释器」· CS 代码 · 共 43 行
CS
43 行
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace CmmInterpretor
{
public partial class CMMHelpForm : Form
{
public CMMHelpForm()
{
InitializeComponent();
}
private void button2_Click(object sender, EventArgs e)
{
this.Dispose();
}
private void button1_Click(object sender, EventArgs e)
{
try
{
Clipboard.SetText( IllustrationTextBox.Text );
}
catch (Exception excp)
{
Clipboard.Clear();
}
}
private void button2_Click_1(object sender, EventArgs e)
{
this.Dispose();
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?