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