📄 explorercommands.cs
字号:
//------------------------------------------------------------------------------
// <autogenerated>
// This code was generated by a tool.
// Runtime Version: 1.1.4322.2032
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </autogenerated>
//------------------------------------------------------------------------------
namespace SharpReportAddin.Commands {
using System;
using System.Windows.Forms;
/// <summary>
/// This class'es handles all the commands used by the
/// FieldsExplorer
/// </summary>
/// <remarks>
/// created by - Forstmeier Peter
/// created on - 07.06.2005 11:49:54
/// </remarks>
///<summary>
/// Clear the selected Section (Grouping/Sorting)
/// </summary>
public class ClearNodes : AbstractExplorerCommand{
public ClearNodes() {
}
public override void Run() {
try {
base.FieldsExplorer.ClearNodeSection();
} catch (Exception) {
throw;
}
}
} // End
/// <summary>
/// Remove the Selected Node from the Collection
/// </summary>
public class RemoveNode : AbstractExplorerCommand{
public RemoveNode() {
}
public override void Run() {
try {
base.FieldsExplorer.ClearSelectedNode();
} catch (Exception) {
throw;
}
}
} // End
/// <summary>
/// Toggle the SortOrder
/// </summary>
public class ToogleOrder : AbstractExplorerCommand{
public ToogleOrder() {
}
public override void Run() {
try {
base.FieldsExplorer.ToogleSortDirection();
} catch (Exception) {
throw;
}
}
} // End
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -