如何获取combobox选中的值

 我来答
谦和且透亮灬抹香鲸j
2016-12-29 · TA获得超过3611个赞
知道小有建树答主
回答量:2141
采纳率:63%
帮助的人:655万
展开全部
1.添加combobox后做如下设置

2.根据自己的需要在类中重写如下方法

// ==========================================================
// Combo box data source methods
// ==========================================================
- (NSInteger) numberOfItemsInComboBox: (NSComboBox *) aComboBox {
#pragma unused (aComboBox)
return ([dataSource count]);
}
- (id) comboBox: (NSComboBox *) aComboBox objectValueForItemAtIndex: (NSInteger) index {
#pragma unused (aComboBox)
return [dataSource objectAtIndex:index];
}
- (NSUInteger) comboBox: (NSComboBox *) aComboBox indexOfItemWithStringValue: (NSString *) string {
#pragma unused (aComboBox)
return [dataSource indexOfObject:string];
}

- (NSString *) firstGenreMatchingPrefix: (NSString *) prefix {
NSString *string = nil;
NSString *lowercasePrefix = [prefix lowercaseString];
NSEnumerator *stringEnum = [dataSource objectEnumerator];

while ( string = [stringEnum nextObject] )
if ([[string lowercaseString] hasPrefix:lowercasePrefix] ) {
return (string) ;
}

return (nil);
} // firstGenreMatchingPrefix

- (NSString *) comboBox: (NSComboBox *) aComboBox completedString: (NSString *) inputString {
#pragma unused (aComboBox)
// This method is received after each character typed by the user, because we have checked the "completes" flag for
// genreComboBox in IB.
// Given the inputString the user has typed, see if we can find a genre with the prefix, and return it as the suggested complete
// string.
NSString *candidate = [self firstGenreMatchingPrefix:inputString];
return (candidate ? candidate : inputString);
}
这些方法实现combobox在选择选项、自动完成时的处理方式。其中dataSource为NSArray。
3.设置combobox的datasource为实现上述方法的对象即可。
huanglenzhi
推荐于2016-08-21 · 知道合伙人数码行家
huanglenzhi
知道合伙人数码行家
采纳数:117538 获赞数:517181
长期从事计算机组装,维护,网络组建及管理。对计算机硬件、操作系统安装、典型网络设备具有详细认知。

向TA提问 私信TA
展开全部
string bianlian; //定义一个string 类型的变量
bianlian=combobox.selecteditem.text ;把下拉列表框中的值读出赋给变量名bianliang
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
2018-03-13
展开全部
  • using System;  

  • using System.Collections.Generic;  

  • using System.ComponentModel;  

  • using System.Data;  

  • using System.Drawing;  

  • using System.Linq;  

  • using System.Text;  

  • using System.Threading.Tasks;  

  • using System.Windows.Forms;  

  • namespace WindowsFormsApplication1  

  • {  

  • public partial class Form1 : Form  

  • {  

  • public Form1()  

  • {  

  • InitializeComponent();  

  • }  

  • private void Form1_Load(object sender, EventArgs e)  

  • {  

  • //添加数据项  

  • comboBox1.Items.Add("apple");  

  • comboBox1.Items.Add("banana");  

  • }  

  • private void button1_Click(object sender, EventArgs e)  

  • {  

  • MessageBox.Show(comboBox1.SelectedItem.ToString());  

  • }  

  • }  

已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式