本文整理汇总了C#中System.Windows.Forms.NumericUpDown.Hide方法的典型用法代码示例。如果您正苦于以下问题:C# NumericUpDown.Hide方法的具体用法?C# NumericUpDown.Hide怎么用?C# NumericUpDown.Hide使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Windows.Forms.NumericUpDown
的用法示例。
在下文中一共展示了NumericUpDown.Hide方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ListDialog
public ListDialog(String p_listItemType, String p_listLinkType, DataEntryController p_listController, int p_rootIDForList, DataEntryController p_callingController, int p_callingRootID)
: base()
{
InitializeComponent();
m_listLinkType = p_listLinkType;
m_listItemType = p_listItemType;
m_rootIDForList = p_rootIDForList;
m_callingRootID = p_callingRootID;
listController = p_listController;
callingController = p_callingController;
newNumericUpDown = new NumericUpDown();
this.listView1.Controls.Add(newNumericUpDown);
newNumericUpDown.Hide();
//image list
Dictionary<String, Bitmap> typeImage = listController.GetIcons();
ImageList tempList = new ImageList();
Image image;
foreach (String k in typeImage.Keys)
{
image = typeImage[k];
tempList.Images.Add(k, image);
}
this.listView1.SmallImageList = tempList;
this.listView1.ItemSelectionChanged += new ListViewItemSelectionChangedEventHandler(listView1_ItemSelectionChanged);
this.listView1.DoubleClick += new EventHandler(ListDialog_DoubleClick);
this.listView1.HScrollMoved += new EventHandler(listView1_ScrollMoved);
this.listView1.VScrollMoved += new EventHandler(listView1_ScrollMoved);
this.listView1.MouseWheelRotated += new EventHandler(listView1_MouseWheelRotated);
this.newNumericUpDown.KeyDown += new KeyEventHandler(newNumericUpDown_KeyDown);
ComponentOptions compOptions = new ComponentOptions();
compOptions.LevelDown = 0;
IXPathNavigable callingInfoIXP = callingController.GetComponentAndChildren(m_callingRootID, p_listLinkType, compOptions);
XPathNavigator callingNavigator = callingInfoIXP.CreateNavigator();
XPathNavigator callingRootComponent = callingNavigator.SelectSingleNode("/Components/Component");
if (callingRootComponent != null)
{
String rootName = callingRootComponent.GetAttribute("Name", callingRootComponent.NamespaceURI);
String rootType = callingRootComponent.GetAttribute("Type", callingRootComponent.NamespaceURI);
addButtonLabel.Text = "Add selected items to " + rootType + " " + rootName + ":";
}
IXPathNavigable titleIXP = listController.GetComponentAndChildren(m_rootIDForList, p_listLinkType, compOptions);
XPathNavigator titleNavigator = titleIXP.CreateNavigator();
XPathNavigator titleComponent = titleNavigator.SelectSingleNode("/Components/Component");
if (titleComponent != null)
{
String titleType = titleComponent.GetAttribute("Type", titleComponent.NamespaceURI);
this.Text = "Items of type " + m_listItemType + " from the " + titleType;
}
addButton.AutoSize = true;
addButton.Text = "Add";
addButton.Click += new EventHandler(addButton_Click);
buttonCancel.Click += new EventHandler(buttonCancel_Click);
this.listView1.MultiSelect = true;
}
示例2: ListDialog
public ListDialog(String p_listAddFromScreen, String p_listItemType, String p_listLinkType, IController p_listController, int p_rootIDForList, String p_callingLinkType, IController p_callingController, int p_callingRootID)
: base()
{
myHelper = new ViewComponentHelper(this);
InitializeComponent();
CreateColumns();
m_listLinkType = p_listLinkType;
m_callingLinkType = p_callingLinkType;
m_listItemType = p_listItemType;
m_rootIDForList = p_rootIDForList;
m_callingRootID = p_callingRootID;
listController = p_listController;
callingController = p_callingController;
amountToAddUpDown = new NumericUpDown();
this.myScrollingListView.Controls.Add(amountToAddUpDown);
amountToAddUpDown.Hide();
this.myScrollingListView.ItemSelectionChanged += new ListViewItemSelectionChangedEventHandler(listView1_ItemSelectionChanged);
this.myScrollingListView.DoubleClick += new EventHandler(ListDialog_DoubleClick);
this.myScrollingListView.HScrollMoved += new EventHandler(listView1_ScrollMoved);
this.myScrollingListView.VScrollMoved += new EventHandler(listView1_ScrollMoved);
this.myScrollingListView.MouseWheelRotated += new EventHandler(listView1_MouseWheelRotated);
this.amountToAddUpDown.KeyDown += new KeyEventHandler(newNumericUpDown_KeyDown);
// initialize label
ComponentOptions compOptions = new ComponentOptions();
compOptions.LevelDown = 0;
IXPathNavigable callingInfoIXP = callingController.GetComponentAndChildren(m_callingRootID, p_callingLinkType, compOptions);
XPathNavigator callingNavigator = callingInfoIXP.CreateNavigator();
XPathNavigator callingRootComponent = callingNavigator.SelectSingleNode("/Components/Component");
if (callingRootComponent != null)
{
String rootName = callingRootComponent.GetAttribute("Name", callingRootComponent.NamespaceURI);
String rootType = callingRootComponent.GetAttribute("Type", callingRootComponent.NamespaceURI);
addButtonLabel.Text = "Add selected items to " + rootType + " " + rootName + ":";
}
// initialize title
this.Text = "Items of type " + m_listItemType + " from the " + p_listAddFromScreen;
addButton.AutoSize = true;
addButton.Text = "Add";
addButton.Click += new EventHandler(AddButton_Click);
closeButton.Click += new EventHandler(buttonCancel_Click);
this.myScrollingListView.MultiSelect = true;
// update / close hooks:
callingController.RegisterForUpdate(this);
this.FormClosing += new FormClosingEventHandler(ListDialog_FormClosing);
// default images
Dictionary<String, Bitmap> typeImage = listController.GetIcons();
ImageList tempList = new ImageList();
Image image;
foreach (String k in typeImage.Keys)
{
image = typeImage[k];
tempList.Images.Add(k, image);
}
this.myScrollingListView.SmallImageList = tempList;
}