dialogresultevent.cs
来自「一个非常好的Web自定义控件」· CS 代码 · 共 35 行
CS
35 行
using System;
namespace MetaBuilders.WebControls {
/// <summary>
/// The signature for a method handling the <see cref="DialogWindowBase.DialogClosed"/> event.
/// </summary>
public delegate void DialogResultEventHandler( Object sender, DialogResultEventArgs e );
/// <summary>
/// The <see cref="EventArgs"/> for the <see cref="DialogWindowBase.DialogClosed"/> event.
/// </summary>
public class DialogResultEventArgs : EventArgs {
/// <summary>
/// Instnatiates a <see cref="DialogResultEventArgs"/> with the given results.
/// </summary>
/// <param name="results"></param>
public DialogResultEventArgs(String results) {
this.results = results;
}
/// <summary>
/// Gets the results for the event.
/// </summary>
public String Results {
get {
return results;
}
}
private String results;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?