?? 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 + -