c#如何获取comboBox当前选中的值
我更改comboBox1选项框的值后,但是comboBox1.SelectedItem.ToString();的值并没有更改,一直都是语文,不及格名单后面的输出就是名字和...
我更改 comboBox1选项框的值后,但是comboBox1.SelectedItem.ToString();的值并没有更改,一直都是语文,不及格名单后面的输出就是名字和选项框的值,我已经改成 “数学” 了,输出的还是 “语文”;
展开
展开全部
1、新建winform项目物肢用于测试comboBox。
2、新建完成的项目结埋蚂斗构。
3、在Form1窗体中添加一个comboBox,编译。
4、点击comboBox,右键选择属性,找到【弯磨items】项,在弹出的【字符串集合编辑器】中输入模拟项1到10。
5、加入模拟值后的运行效果如下,下拉显示了所有的10个项,没有滚动条。
6、再次找到comboBox,设置如下两项:IntegralHeight:false;MaxLength:3。
展开全部
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为实现上述方法的启首对象即可。
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为实现上述方法的启首对象即可。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
onSelect:function(rec){varval=$('#cc1').combobox('getValues').join(',');$('#OperationID').val(val);}这样可以多选,用一大粗个文本坦仿辩框解决后台取值问题,后台直接取值的话,跟让缺你一样问题
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
DataRowView drv = (DataRowView)comboBox1.SelectedItem;
string Id = drv.Row["id"].ToString();
string Id = drv.Row["id"].ToString();
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询