You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
856 B
24 lines
856 B
using DevExpress.XtraNavBar; |
|
|
|
namespace KGIS.Plugin.LayerProperty.View.UC_Controls |
|
{ |
|
public class DxperienceXtraNavBarLocalizationCHS : NavBarLocalizer |
|
{ |
|
public override string GetLocalizedString(NavBarStringId id) |
|
{ |
|
switch (id) |
|
{ |
|
case NavBarStringId.NavPaneMenuShowMoreButtons: |
|
return "显示更多的按钮(&M)"; |
|
case NavBarStringId.NavPaneMenuShowFewerButtons: |
|
return "显示较少的按钮(&F)"; |
|
case NavBarStringId.NavPaneMenuAddRemoveButtons: |
|
return "添加或删除按钮(&A)"; |
|
case NavBarStringId.NavPaneChevronHint: |
|
return "配置按钮"; |
|
default: |
|
return base.GetLocalizedString(id); |
|
} |
|
} |
|
} |
|
}
|
|
|