• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

C# RadComboBoxItemEventArgs类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了C#中RadComboBoxItemEventArgs的典型用法代码示例。如果您正苦于以下问题:C# RadComboBoxItemEventArgs类的具体用法?C# RadComboBoxItemEventArgs怎么用?C# RadComboBoxItemEventArgs使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



RadComboBoxItemEventArgs类属于命名空间,在下文中一共展示了RadComboBoxItemEventArgs类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C#代码示例。

示例1: rcbLCType_ItemDataBound

 protected void rcbLCType_ItemDataBound(object sender, RadComboBoxItemEventArgs e)
 {
     DataRowView row = e.Item.DataItem as DataRowView;
     e.Item.Attributes["LCTYPE"] = row["LCTYPE"].ToString();
     e.Item.Attributes["Description"] = row["Description"].ToString();
     e.Item.Attributes["Category"] = row["Category"].ToString();
 }
开发者ID:nguyenppt,项目名称:1pubcreditnew,代码行数:7,代码来源:NormalLC.ascx.cs


示例2: OnDropDownContactInfo_ItemDataBound

 protected void OnDropDownContactInfo_ItemDataBound(object sender, RadComboBoxItemEventArgs e)
 {
     Literal lblContactInfo = (Literal)e.Item.FindControl("lblContactInfo");
     if (lblContactInfo != null)
     {
         lblContactInfo.Text += e.Item.DataItem as string;
     }
 }
开发者ID:netthanhhung,项目名称:Neos,代码行数:8,代码来源:Candidates.aspx.cs


示例3: rcbCustomerID_ItemDataBound

 protected void rcbCustomerID_ItemDataBound(object sender, RadComboBoxItemEventArgs e)
 {
     DataRowView row = e.Item.DataItem as DataRowView;
     e.Item.Attributes["CustomerName"] = row["CustomerName2"].ToString();
     e.Item.Attributes["Address"] = row["Address"].ToString();
     e.Item.Attributes["IdentityNo"] = row["IdentityNo"].ToString();
     e.Item.Attributes["IssueDate"] = row["IssueDate"].ToString();
     e.Item.Attributes["IssuePlace"] = row["IssuePlace"].ToString();
 }
开发者ID:nguyenppt,项目名称:1pubcreditnew,代码行数:9,代码来源:DCTransaction.ascx.cs


示例4: rcbApplicantID_ItemDataBound

 protected void rcbApplicantID_ItemDataBound(object sender, RadComboBoxItemEventArgs e)
 {
     var row = e.Item.DataItem as DataRowView;
     e.Item.Attributes["CustomerName"] = row["GBFullName"].ToString();
     e.Item.Attributes["Address"] = row["GBStreet"].ToString();
     e.Item.Attributes["IdentityNo"] = row["DocID"].ToString();
     e.Item.Attributes["IssueDate"] = row["DocIssueDate"].ToString();
     e.Item.Attributes["IssuePlace"] = row["DocIssuePlace"].ToString();
     e.Item.Attributes["City"] = row["GBDist"].ToString();
     e.Item.Attributes["Country"] = row["CountryName"].ToString();
 }
开发者ID:nguyenppt,项目名称:tfinance0115,代码行数:11,代码来源:EnquiryIssueLC.ascx.cs


示例5: rcbCounterparty_OnItemDataBound

 protected void rcbCounterparty_OnItemDataBound(object sender, RadComboBoxItemEventArgs e)
 {
     var row = e.Item.DataItem as DataRowView;
     e.Item.Attributes["CustomerName"] = row["CustomerName2"].ToString();
     e.Item.Attributes["CustomerID"] = row["CustomerID"].ToString();
 }
开发者ID:nguyenppt,项目名称:tfinance0115,代码行数:6,代码来源:ForeignExchangeTrade.ascx.cs


示例6: rcbChargeAcct_ItemDataBound

 protected void rcbChargeAcct_ItemDataBound(object sender, RadComboBoxItemEventArgs e)
 {
     DataRowView row = e.Item.DataItem as DataRowView;
     e.Item.Attributes["Id"] = row["Id"].ToString();
     e.Item.Attributes["Name"] = row["Name"].ToString();
 }
开发者ID:nguyenppt,项目名称:biscorebanksys,代码行数:6,代码来源:OutgoingCollectionPayment.ascx.cs


示例7: comboDrawerCusNo_ItemDataBound

 protected void comboDrawerCusNo_ItemDataBound(object sender, RadComboBoxItemEventArgs e)
 {
     var row = e.Item.DataItem as BCUSTOMER;
     e.Item.Attributes["CustomerID"] = row.CustomerID;
     e.Item.Attributes["CustomerName2"] = row.CustomerName;
 }
开发者ID:nguyenppt,项目名称:biscorebanksys,代码行数:6,代码来源:OutgoingCollectionPayment.ascx.cs


示例8: cboNostroAcct_ItemDataBound

 /*
 * Method Revision History:
 * Version        Date            Author            Comment
 * ----------------------------------------------------------
 * 0.1            NA
 * 0.2            Sep 30, 2015    Hien Nguyen       Fix bug 46 _ remove Nostro Account field
 */
 protected void cboNostroAcct_ItemDataBound(object sender, RadComboBoxItemEventArgs e)
 {
     //var row = e.Item.DataItem as DataRowView;
     //if (row == null) return;
     //e.Item.Attributes["Code"] = row["Code"].ToString();
     //e.Item.Attributes["Description"] = row["Description"].ToString();
     //e.Item.Attributes["Account"] = row["AccountNo"].ToString();
 }
开发者ID:nguyenppt,项目名称:biscorebanksys,代码行数:15,代码来源:OutgoingCollectionPayment.ascx.cs


示例9: cmbCategory_onitemdatabound

 protected void cmbCategory_onitemdatabound(object sender, RadComboBoxItemEventArgs e)
 {
     DataRowView row = e.Item.DataItem as DataRowView;
     e.Item.Attributes["Type"] = row["Type"].ToString();
 }
开发者ID:nguyenppt,项目名称:biscorebanksys,代码行数:5,代码来源:UnBlockAcct_Enquiry.ascx.cs


示例10: rcbLimitID_OnItemDataBound

 protected void rcbLimitID_OnItemDataBound(object sender, RadComboBoxItemEventArgs e)
 {
     DataRowView data = e.Item.DataItem as DataRowView;
     e.Item.Attributes["MainLimitID"] = data["MainLimitID"].ToString();
 }
开发者ID:nguyenppt,项目名称:tfinance0115,代码行数:5,代码来源:InputCollateralRight.ascx.cs


示例11: comboRemittingBankNo_ItemDataBound

 protected void comboRemittingBankNo_ItemDataBound(object sender, RadComboBoxItemEventArgs e)
 {
     DataRowView row = e.Item.DataItem as DataRowView;
     e.Item.Attributes["Code"] = row["Code"].ToString();
     e.Item.Attributes["Description"] = row["Description"].ToString();
 }
开发者ID:nguyenppt,项目名称:biscorebanksys,代码行数:6,代码来源:DocumetaryCollection.ascx.cs


示例12: cmbStandard_ItemChecked

		protected void cmbStandard_ItemChecked(object sender, RadComboBoxItemEventArgs e)
		{
			var dropdown = (RadComboBox)sender;
			ViewState[_standardFilterKey] = dropdown.CheckedItems.Count > 0 ? dropdown.CheckedItems[0].Value : "";

			SetFilterVisibility();
			SearchResources();
		}
开发者ID:ezimaxtechnologies,项目名称:ASP.Net,代码行数:8,代码来源:Resources.ascx.cs


示例13: rcbCustAccount_OnItemDataBound

 // gan cac thuoc tinh Name, ID cho cac khach hang khi duoc chon , su kien xay ra khi co du lieu do vao combobox
 protected void rcbCustAccount_OnItemDataBound(object sender, RadComboBoxItemEventArgs e)
 {
     DataRowView row = e.Item.DataItem as DataRowView;
     e.Item.Attributes["CustomerName"] = row["CustomerName"].ToString();  //CustomerName
     e.Item.Attributes["CustomerID"] = row["CustomerID"].ToString();
 }
开发者ID:nguyenppt,项目名称:tfinance0115,代码行数:7,代码来源:CashRepayment.ascx.cs


示例14: rcbCustomerID_OnItemDataBound

 protected void rcbCustomerID_OnItemDataBound(object sender, RadComboBoxItemEventArgs e)
 {
     DataRowView Data = e.Item.DataItem as DataRowView;
         e.Item.Attributes["DocType"] = Data["DocType"].ToString();
         e.Item.Attributes["DocID"] = Data["DocID"].ToString();
         e.Item.Attributes["DocIssuePlace"] = Data["DocIssuePlace"].ToString();
         e.Item.Attributes["DocIssueDate"] = Data["DocIssueDate"].ToString();
         e.Item.Attributes["DocExpiryDate"] = Data["DocExpiryDate"].ToString();
         //if (Data["DocExpiryDate"].ToString() != null)
         //{
         //    e.Item.Attributes["DocExpiryDate"] =
         //}
         e.Item.Attributes["GBFullName"] = Data["GBFullName"].ToString();
 }
开发者ID:nguyenppt,项目名称:1pubcreditnew,代码行数:14,代码来源:OpenRevolvingCommContract.ascx.cs


示例15: SetClassList

        /// <summary>
        /// OnItemDataBound event. Basic template that we might need
        /// to fire during an objects DataBinding event
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        protected void SetClassList(object sender, RadComboBoxItemEventArgs e)
        {
            if (e.Item is RadComboBoxItem)
            {

                var item = e.Item;
            }
        }
开发者ID:ezimaxtechnologies,项目名称:ASP.Net,代码行数:14,代码来源:RosterPortletPage.aspx.cs


示例16: commomSwiftCode_ItemDataBound

 protected void commomSwiftCode_ItemDataBound(object sender, RadComboBoxItemEventArgs e)
 {
     var row = e.Item.DataItem as DataRowView;
     e.Item.Attributes["SwiftCode"] = row["SwiftCode"].ToString();
     e.Item.Attributes["BankName"] = row["BankName"].ToString();
 }
开发者ID:nguyenppt,项目名称:tfinance0115,代码行数:6,代码来源:ExportDocumentaryCollection.ascx.cs


示例17: comboDraweeCusNo_ItemDataBound

 protected void comboDraweeCusNo_ItemDataBound(object sender, RadComboBoxItemEventArgs e)
 {
     var row = e.Item.DataItem as DataRowView;
     e.Item.Attributes["CustomerID"] = row["CustomerID"].ToString();
     e.Item.Attributes["CustomerName2"] = row["CustomerName2"].ToString();
 }
开发者ID:nguyenppt,项目名称:biscorebanksys,代码行数:6,代码来源:DocumetaryCollection.ascx.cs


示例18: ddlNotifyOther_ItemChecked

 protected void ddlNotifyOther_ItemChecked(object sender, RadComboBoxItemEventArgs e)
 {
     FillEmailAddressLabels();
 }
开发者ID:WCTingle,项目名称:InfoShare_Public,代码行数:4,代码来源:InventoryApproval.aspx.cs


示例19: OnItemDataBoundFolderTypeComboBox

 private void OnItemDataBoundFolderTypeComboBox(object sender, RadComboBoxItemEventArgs e)
 {
     var dataSource = (FolderMappingViewModel)e.Item.DataItem;
     e.Item.Attributes["SupportsMappedPaths"] = FolderProvider.GetProviderList()[dataSource.FolderTypeName].SupportsMappedPaths.ToString().ToLowerInvariant();
 }
开发者ID:revellado,项目名称:privateSocialGroups,代码行数:5,代码来源:View.ascx.cs


示例20: cmbCity_OnItemDataBound

 protected void cmbCity_OnItemDataBound(object sender, RadComboBoxItemEventArgs e)
 {
     DataRowView dr = e.Item.DataItem as DataRowView;
     e.Item.Attributes["MaTinhThanh"] = dr["MaTinhThanh"].ToString();
     e.Item.Attributes["TenTinhThanh"] = dr["TenTinhThanh"].ToString();
 }
开发者ID:nguyenppt,项目名称:1pubcreditnew,代码行数:6,代码来源:Index.ascx.cs



注:本文中的RadComboBoxItemEventArgs类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C# RadComboBoxItemsRequestedEventArgs类代码示例发布时间:2022-05-24
下一篇:
C# RadComboBoxItem类代码示例发布时间:2022-05-24
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap