Office中国论坛/Access中国论坛
标题:
【作业】04课-紫电
[打印本页]
作者:
紫电
时间:
2014-3-23 17:50
标题:
【作业】04课-紫电
本帖最后由 紫电 于 2014-3-28 23:08 编辑
1、稍后添加,防止晚上发帖要审核。
二、DropDown、ComboBox、SplitButton用法详解。
1、DropDown:表示用户可以从中进行选择的项列表和用户可以单击的功能区按钮列表。
用法:
RibbonDropDown 可以包含 RibbonDropDownItem 对象和 RibbonButton 控件。
在运行时,可以使用 RibbonFactory 对象的 CreateRibbonDropDown 方法创建 RibbonDropDown。
有两种方法可访问 RibbonFactory 对象:
使用功能区类的 Factory 属性。 请通过功能区类中的代码使用此方法。
使用 Globals.Factory.GetRibbonFactory 方法。 请通过功能区类之外的代码使用此方法。
在功能区加载到 Office 之后,您不能在运行时向 Buttons 集合中添加按钮。
注意点:
(1)、上面就是说不能添加RibbonButton,运行时是可以添加RibbonDropDownItem的。
(2)、在Ribbon设计器中,就这么写: this.Factory
在其他地方就这么写:RibbonFactory MyFactory = Globals.Factory.GetRibbonFactory();
Excel用法举例:
点一下,如果是item,就会改变表面的字;按钮只能是设计模式的时候添加,所以这货不好使,很用用到它。找了许久只找到一个,如下
BorderStyle
线型
dropDown
代码实例:
private void dropYY_ItemsLoading(object sender, RibbonControlEventArgs e)
{
dropYY.Items.Clear();
foreach (KeyValuePair<string, RibbonDropDownItem> Item in m_RunMyControl.GetControls())
{
dropYY.Items.Add(Item.Value);
}
}
复制代码
2、
ComboBox
:表示自定义功能区上的组合框。
用法:
组合框在下拉菜单中为用户提供了一个文本输入字段和一个选项列表。
在运行时,可以使用 RibbonFactory 对象的 CreateRibbonComboBox 方法创建 RibbonComboBox。
有两种方法可访问 RibbonFactory 对象:
使用功能区类的 Factory 属性。 请通过功能区类中的代码使用此方法。
使用 Globals.Factory.GetRibbonFactory 方法。 请通过功能区类之外的代码使用此方法。
此类型的某些成员只能在功能区加载到 Office 应用程序之前设置。
注意点:
这货只能使用RibbonDropDownItem,选中了,就改变了文本框中的字符,字符也可以手动打进去。
Excel用法举例:
Excel中还挺多的,鼠标点下框,能打字的带下拉箭头的,都是它!
[attach]53688[/attach]
代码实例:
#region 第三种实现方法,支持手动输入频道号、房间号
//房间号
private void cmbYY_TextChanged(object sender, RibbonControlEventArgs e)
{
string RoomID = "";
if (m_CmbItems.ContainsKey(cmbYY.Text))
{
//存在此房间
RoomID = m_CmbItems[cmbYY.Text].Tag.ToString();
cmbYY.SuperTip = "您选择的房间号为:" + RoomID;//显示房间号
editYY.Text = m_RunMyControl.DefalutChannel.Value;//重置频道号
editYY.SuperTip = "您选择的频道号为:" + m_RunMyControl.DefalutChannel.Key;
m_RunMyControl.EnterYYRoom(RoomID);
}
else if ("" == cmbYY.Text)
{
return;//不能为空,退出,等待输入数据
}
else if (! m_RunMyControl.IsNumeric(cmbYY.Text))
{
//不能为非数字的字符
cmbYY.Text="";
cmbYY.SuperTip = "";
System.Windows.Forms.MessageBox.Show("不能输入非数字的频道号!");
return;
}
else
{
//检测频道号
if (m_RunMyControl.DefalutChannel.Value == editYY.Text || "" == editYY.Text)
{
//自定义打开YY时,不允许使用默认的频道号
editYY.Text = "";
editYY.SuperTip = "";
cmbYY.SuperTip = "";
System.Windows.Forms.MessageBox.Show("请输入频道号");
}
else
{
//一切正常,打开YY
RoomID = cmbYY.Text;
cmbYY.SuperTip = "您选择的房间号为:" + RoomID;//显示房间号
m_RunMyControl.EnterYYRoom(RoomID,editYY.Text);
}
}
}
//频道号
private void editYY_TextChanged(object sender, RibbonControlEventArgs e)
{
if ("" == editYY.Text )
{
return;//频道号不能为空,退出等待输入!
}
else if (! m_RunMyControl.IsNumeric(editYY.Text))
{
//不能为非数字的字符
editYY.Text = "";
editYY.SuperTip = "";
System.Windows.Forms.MessageBox.Show("不能输入非数字的频道号!");
return;
}
else if (m_CmbItems.ContainsKey(cmbYY.Text) || "" == cmbYY.Text)
{
//自定义打开YY时,不允许使用现有的频道号,房间号不允许为空
cmbYY.Text = "";
cmbYY.SuperTip = "";
editYY.SuperTip = "";
System.Windows.Forms.MessageBox.Show("请输入房间号");
}
else
{
//一切正常,打开YY
m_RunMyControl.EnterYYRoom(cmbYY.Text, editYY.Text);
}
}
#endregion
复制代码
欢迎光临 Office中国论坛/Access中国论坛 (http://www.office-cn.net/)
Powered by Discuz! X3.3