📄 sectiontreenode.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>
//------------------------------------------------------------------------------
using System;
using System.Windows.Forms;
/// <summary>
/// This Node represents a sections in the FieldsExplorer
/// like AvailableFields, Sorting etc.
/// </summary>
/// <remarks>
/// created by - Forstmeier Peter
/// created on - 05.06.2005 18:40:31
/// </remarks>
namespace SharpReportAddin {
public class SectionTreeNode : SharpReportAddin.AbstractFieldsNode {
public SectionTreeNode(string nodeName) {
this.Text = nodeName;
base.ContextmenuAddinTreePath = "/SharpReport/ContextMenu/ContextMenu/FieldsExplorer/SectionTreeNode";
}
public override string ContextmenuAddinTreePath {
get {
return base.ContextmenuAddinTreePath;
}
set {
base.ContextmenuAddinTreePath = value;
}
}
/// <summary>
/// Generates a Drag & Drop data object. If this property returns null
/// the node indicates that it can't be dragged.
/// </summary>
public override DataObject DragDropDataObject {
get {
return new DataObject(this);
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -