本帖最后由 Tachiro 于 2021-6-15 19:14 编辑
- //Form
- ApplyLanguageInfo(this);
- //Class
- public static void ApplyLanguageInfo(Form frmForm)
- {
- var sonControls = frmForm.Controls;
- foreach (Control control in sonControls)
- {
- if (control.GetType().Name == "C1SplitButton")
- {
- //下方这个 foreach 要怎样写,才能够取得所有的 DropDownItem?
- foreach (Control items in ((C1SplitButton)control).Controls)
- {
- //我想要置换每一个 Item 的名称
- items.Text = GetLanguageString(items.Text, "form", frmForm.Name, "object", items.Name, "Text");
- }
- }
- }
- }
复制代码
目前使用到的 C1 控件,就只有 C1SplitButton 无法取得它的所有 Items
|