?? tableitem.cs
字號:
?/*
* Created by SharpDevelop.
* User: Forstmeier Helmut
* Date: 17.04.2006
* Time: 15:35
*
* To change this template use Tools | Options | Coding | Edit Standard Headers.
*/
using System;
using System.ComponentModel;
using System.Windows.Forms;
namespace SharpReportCore.BaseItems {
/// <summary>
/// Description of TableItem.
/// </summary>
public class TableItem :BaseReportItem,IContainerItem{
private Padding padding;
// private string tableName;
public TableItem(){
}
/*
[Category("Databinding")]
public string TableName {
get {
return tableName;
}
// set {
// tableName = value;
// }
}
*/
#region Interface implementation of 'IContainerItem'
public System.Windows.Forms.Padding Padding {
get {
return this.padding;
}
set {
this.padding = value;
base.NotifyPropertyChanged("Padding");
}
}
public ReportItemCollection Items {
get {
throw new NotImplementedException();
}
}
public bool IsValidChild(BaseReportItem childControl){
throw new NotImplementedException();
}
#endregion
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -