123456789101112131415161718192021 |
- using System.Windows.Controls;
- using CyberX8_MainPages.ViewModels;
- namespace CyberX8_MainPages.Views
- {
-
-
-
- public partial class VATPerformanceView : UserControl
- {
- public VATPerformanceView()
- {
- InitializeComponent();
- }
- public void Init(string systemName)
- {
- (this.DataContext as VATPerformanceViewModel).ModuleName = systemName;
- }
- }
- }
|