private void tsbZoomIn_Click(object sender, EventArgs e)
{
try
{
//字体を拡大する
this.trv.Font = new System.Drawing.Font("MS UI Gothic", ++fontSize, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
this.trv.ItemHeight = this.trv.ItemHeight + 2;
}
catch (Exception ex)
{
StackFrame fr = new StackFrame(true);
Log.WriteLine(fr.GetMethod().ReflectedType.FullName + "_" + fr.GetMethod().Name, ex.Message, LogLevel.Error);
}
}
private void tsbZoomOut_Click(object sender, EventArgs e)
{
try
{
//字体を縮小する
if (fontSize =