📄 eventdelegates.cs
字号:
//==========================================================================================
//
// WJ.MPR.Util.MPREventDelegates
// Copyright (c) 2006, WJ Communications, Inc.
//
// Useful Event Handler type delegates.
//
//==========================================================================================
using System;
namespace WJ.MPR.Util
{
/// <summary>
/// Delegate for events with a bool argument.
/// </summary>
public delegate void BoolEventHandler(bool Flag);
/// <summary>
/// Delegate for events with a string argument.
/// </summary>
public delegate void StringEventHandler(string Message);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -