| 1234567891011121314151617181920 |
- using System.Windows.Controls;
- namespace SHJX.Service.Librarys.manual
- {
- /// <summary>
- /// ManualOperation.xaml 的交互逻辑
- /// </summary>
- public partial class ManualOperation : UserControl
- {
- public ManualOperation()
- {
- InitializeComponent();
- }
- public string OpName
- {
- set => head.Header = value;
- }
- }
- }
|