📄 test.cs
字号:
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
namespace TreeReportApp
{
/// <summary>
/// test 的摘要说明。
/// </summary>
public class test : System.Windows.Forms.Form
{
private TreeReportApp.TreeRepoertViewCtl treeRepoertViewCtl1;
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.Container components = null;
public test()
{
//
// Windows 窗体设计器支持所必需的
//
InitializeComponent();
//
// TODO: 在 InitializeComponent 调用后添加任何构造函数代码
//
}
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
protected override void Dispose( bool disposing )
{
if( disposing )
{
if(components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
}
#region Windows 窗体设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.treeRepoertViewCtl1 = new TreeReportApp.TreeRepoertViewCtl();
this.SuspendLayout();
//
// treeRepoertViewCtl1
//
this.treeRepoertViewCtl1.Dock = System.Windows.Forms.DockStyle.Fill;
this.treeRepoertViewCtl1.IsCanExportReport = true;
this.treeRepoertViewCtl1.IsCanGenExpression = true;
this.treeRepoertViewCtl1.IsCanRunReport = true;
this.treeRepoertViewCtl1.IsCanSelectReport = true;
this.treeRepoertViewCtl1.IsCanSetupReport = true;
this.treeRepoertViewCtl1.IsDisplayOperatePanel = true;
this.treeRepoertViewCtl1.IsDisplaySearchCtlGroup = true;
this.treeRepoertViewCtl1.Location = new System.Drawing.Point(0, 0);
this.treeRepoertViewCtl1.Name = "treeRepoertViewCtl1";
this.treeRepoertViewCtl1.Size = new System.Drawing.Size(710, 273);
this.treeRepoertViewCtl1.TabIndex = 0;
this.treeRepoertViewCtl1.WhereExpForReportData = "";
this.treeRepoertViewCtl1.Load += new System.EventHandler(this.treeRepoertViewCtl1_Load);
//
// test
//
this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
this.ClientSize = new System.Drawing.Size(710, 273);
this.Controls.Add(this.treeRepoertViewCtl1);
this.Name = "test";
this.Text = "test";
this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
this.Load += new System.EventHandler(this.test_Load);
this.ResumeLayout(false);
}
#endregion
private void treeRepoertViewCtl1_Load(object sender, System.EventArgs e)
{
//this.treeRepoertViewCtl1.IsDisplayOperatePanel = false;
}
private void button1_Click(object sender, System.EventArgs e)
{
//treeRepoertViewCtl1.comboBox_reportlist.Text="kkkkkkkkkk";
//int i = treeRepoertViewCtl1.comboBox_reportlist.Items.Count;
}
private void test_Load(object sender, System.EventArgs e)
{
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -