马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
今天去面试,被问到C#中的new关键字,看了那么多的书对new关键字还是有一定认识,回来又把new复习了一遍,发现了许多以前还不知道的细节。privatevoidGridFilter_Customizer()
{
Infragistics.Shared.ResourceCustomizerrc=Infragistics.Win.UltraWinGrid.Resources.Customizer;
rc.SetCustomizedString("RowFilterDropDownAllItem","一切");
rc.SetCustomizedString("RowFilterDropDownBlanksItem","空");
rc.SetCustomizedString("RowFilterDropDownCustomItem","自界说");
rc.SetCustomizedString("RowFilterDropDownNonBlanksItem","非空");
rc.SetCustomizedString("RowFilterDropDownAllItem","一切");
rc.SetCustomizedString("RowFilterDialogTitlePrefix","输出过滤原则为");
rc.SetCustomizedString("FilterDialogAndRadioText","而且");
rc.SetCustomizedString("FilterDialogOrRadioText","大概");
rc.SetCustomizedString("FilterDialogAddConditionButtonText","增添一个前提(&N)");
rc.SetCustomizedString("FilterDialogDeleteButtonText","删除一个前提");
rc.SetCustomizedString("FilterDialogOkButtonText","断定(&O)");
rc.SetCustomizedString("FilterDialogCancelButtonText","作废(&C)");
rc.SetCustomizedString("FilterDialogOkButtonNoFiltersText","不外滤");
rc.SetCustomizedString("RowFilterDialogOperatorHeaderCaption","对照运算符");
rc.SetCustomizedString("RowFilterDialogOperandHeaderCaption","原则");
rc.SetCustomizedString("RowFilterDropDownEquals","即是");
rc.SetCustomizedString("RowFilterDropDownNotEquals","不即是");
rc.SetCustomizedString("RowFilterDropDownLessThan","小于");
rc.SetCustomizedString("RowFilterDropDownLessThanOrEqualTo","小于即是");
rc.SetCustomizedString("RowFilterDropDownGreaterThan","年夜于");
rc.SetCustomizedString("RowFilterDropDownGreaterThanOrEqualTo","年夜于即是");
rc.SetCustomizedString("RowFilterDropDownMatch","自界说划定规矩表达式");
rc.SetCustomizedString("RowFilterDropDownLike","含混查找");
rc.SetCustomizedString("RowFilterDialogBlanksItem","空缺");
rc.SetCustomizedString("RowFilterDialogDBNullItem","无值");
rc.SetCustomizedString("RowFilterDialogEmptyTextItem","空字符");
rc.SetCustomizedString("RowFilterDropDown_Operator_Equals","即是");
rc.SetCustomizedString("RowFilterDropDown_Operator_NotEquals","不即是");
rc.SetCustomizedString("RowFilterDropDown_Operator_LessThan","小于");
rc.SetCustomizedString("RowFilterDropDown_Operator_LessThanOrEqualTo","小于即是");
rc.SetCustomizedString("RowFilterDropDown_Operator_GreaterThan","年夜于");
rc.SetCustomizedString("RowFilterDropDown_Operator_GreaterThanOrEqualTo","年夜于即是");
rc.SetCustomizedString("RowFilterDropDown_Operator_Match","自界说划定规矩表达式");
rc.SetCustomizedString("RowFilterDropDown_Operator_Like","含混查找");
rc.SetCustomizedString("RowFilterPatternCaption","有效查找形式");
rc.SetCustomizedString("RowFilterPatternError","毛病的剖析形式{0}.请输出一个无效的表达式");
rc.SetCustomizedString("RowFilterPatternException","有效查找形式{0}");
rc.SetCustomizedString("RowFilterRegexError","有效的划定规矩表达式{0}.请输出一个无效的表达式");
rc.SetCustomizedString("RowFilterRegexErrorCaption","有效划定规矩表达式");
rc.SetCustomizedString("RowFilterRegexException","有效划定规矩表达式{0}");
}
内里翻译的有所不当。请人人体谅,恰好有个网友必要,以是贴下去了。
它有很多缺点的,有兴趣可以到网上去搜索一下。于是微软有发明了“下一代”C++:C++/CLI语言,这个可以解决在.NETFramework中,托管C++产生的问题。在《程序员》杂志上,lippman和李建中合作连载介绍了C++/CLI语言。 |