?? tabpage.cs
字號:
// *****************************************************************************
//
// (c) Crownwood Consulting Limited 2002
// All rights reserved. The software and associated documentation
// supplied hereunder are the proprietary information of Crownwood Consulting
// Limited, Haxey, North Lincolnshire, England and are supplied subject to
// licence terms.
//
// Magic Version 1.7 www.dotnetmagic.com
// *****************************************************************************
using System;
using System.IO;
using System.Drawing;
using System.Resources;
using System.Reflection;
using System.Collections;
using System.Windows.Forms;
using System.ComponentModel;
using Crownwood.Magic.Collections;
namespace Crownwood.Magic.Controls
{
[ToolboxItem(false)]
[DefaultProperty("Title")]
[DefaultEvent("PropertyChanged")]
public class TabPage : Panel
{
// Enumeration of property change events
public enum Property
{
Title,
Control,
ImageIndex,
ImageList,
Icon,
Selected,
}
// Declare the property change event signature
public delegate void PropChangeHandler(TabPage page, Property prop, object oldValue);
// Public events
public event PropChangeHandler PropertyChanged;
// Instance fields
protected string _title;
protected Control _control;
protected int _imageIndex;
protected ImageList _imageList;
protected Icon _icon;
protected bool _selected;
protected Control _startFocus;
protected bool _shown;
public TabPage()
{
InternalConstruct("Page", null, null, -1, null);
}
public TabPage(string title)
{
InternalConstruct(title, null, null, -1, null);
}
public TabPage(string title, Control control)
{
InternalConstruct(title, control, null, -1, null);
}
public TabPage(string title, Control control, int imageIndex)
{
InternalConstruct(title, control, null, imageIndex, null);
}
public TabPage(string title, Control control, ImageList imageList, int imageIndex)
{
InternalConstruct(title, control, imageList, imageIndex, null);
}
public TabPage(string title, Control control, Icon icon)
{
InternalConstruct(title, control, null, -1, icon);
}
protected void InternalConstruct(string title,
Control control,
ImageList imageList,
int imageIndex,
Icon icon)
{
// Assign parameters to internal fields
_title = title;
_control = control;
_imageIndex = imageIndex;
_imageList = imageList;
_icon = icon;
// Appropriate defaults
_selected = false;
_startFocus = null;
}
[DefaultValue("Page")]
[Localizable(true)]
public string Title
{
get { return _title; }
set
{
if (_title != value)
{
string oldValue = _title;
_title = value;
OnPropertyChanged(Property.Title, oldValue);
}
}
}
[DefaultValue(null)]
public Control Control
{
get { return _control; }
set
{
if (_control != value)
{
Control oldValue = _control;
_control = value;
OnPropertyChanged(Property.Control, oldValue);
}
}
}
[DefaultValue(-1)]
public int ImageIndex
{
get { return _imageIndex; }
set
{
if (_imageIndex != value)
{
int oldValue = _imageIndex;
_imageIndex = value;
OnPropertyChanged(Property.ImageIndex, oldValue);
}
}
}
[DefaultValue(null)]
public ImageList ImageList
{
get { return _imageList; }
set
{
if (_imageList != value)
{
ImageList oldValue = _imageList;
_imageList = value;
OnPropertyChanged(Property.ImageList, oldValue);
}
}
}
[DefaultValue(null)]
public Icon Icon
{
get { return _icon; }
set
{
if (_icon != value)
{
Icon oldValue = _icon;
_icon = value;
OnPropertyChanged(Property.Icon, oldValue);
}
}
}
[DefaultValue(true)]
public bool Selected
{
get { return _selected; }
set
{
if (_selected != value)
{
bool oldValue = _selected;
_selected = value;
OnPropertyChanged(Property.Selected, oldValue);
}
}
}
[DefaultValue(null)]
public Control StartFocus
{
get { return _startFocus; }
set { _startFocus = value; }
}
public virtual void OnPropertyChanged(Property prop, object oldValue)
{
// Any attached event handlers?
if (PropertyChanged != null)
PropertyChanged(this, prop, oldValue);
}
internal bool Shown
{
get { return _shown; }
set { _shown = value; }
}
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -