📄 columnstreenode.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.ComponentModel;
using System.Windows.Forms;
using SharpReportAddin;
/// <summary>
/// Thsi class acts as a derived TreeNode for Columns
/// </summary>
/// <remarks>
/// created by - Forstmeier Peter
/// created on - 05.06.2005 18:54:33
/// </remarks>
namespace SharpReportAddin {
public class ColumnsTreeNode : SharpReportAddin.AbstractFieldsNode {
ListSortDirection listSortDirection;
public ColumnsTreeNode(string nodeName):this(nodeName,ListSortDirection.Ascending) {
}
public ColumnsTreeNode(string nodeName,ListSortDirection direction) {
this.Text = nodeName;
this.listSortDirection = direction;
base.ContextmenuAddinTreePath = "/SharpReport/ContextMenu/ContextMenu/FieldsExplorer/ColumnTreeNode";
}
public ListSortDirection SortDirection {
get {
return listSortDirection;
}
set {
listSortDirection = value;
}
}
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 + -