12345678910111213141516171819202122232425262728 |
- using System.Windows.Controls;
- using Vinno.IUS.Common.Utilities;
- namespace vStation.Presentation
- {
- /// <summary>
- /// ExamsOperationPanel.xaml 的交互逻辑
- /// </summary>
- public partial class ExamsOperationPanel : UserControl
- {
- public ExamsOperationPanel()
- {
- InitializeComponent();
- }
- public void TranslateExamsOperationPanel()
- {
- SearchItem.Header = TranslateHelper.Translate("SearchItem");
- RecordList.TranslateRecordList();
- RecordDetails.TranslateRecordDetails();
- RecordSearch.TranslateRecordSearch();
- Comments.TranslateComments();
- CommentsTemplate.TranslateCommentsTemplate();
- Images.TranslateImages();
- VideoCapturePanel.TranslateVideoCapturePanel();
- }
- }
- }
|