44 lines
1.1 KiB
C#
44 lines
1.1 KiB
C#
using Common;
|
|
using CommunityToolkit.Mvvm.Messaging;
|
|
using MegaRobo.C00225155App.MenuViews;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows;
|
|
using System.Windows.Controls;
|
|
using System.Windows.Data;
|
|
using System.Windows.Documents;
|
|
using System.Windows.Input;
|
|
using System.Windows.Media;
|
|
using System.Windows.Media.Imaging;
|
|
using System.Windows.Navigation;
|
|
using System.Windows.Shapes;
|
|
|
|
namespace MegaRobo.C00225155App.MenuViews
|
|
{
|
|
/// <summary>
|
|
///主页呈现
|
|
/// </summary>
|
|
public partial class HomeView : UserControl
|
|
{
|
|
public HomeView()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
//private void Expand_Click(object sender, RoutedEventArgs e)
|
|
//{
|
|
// // 克隆内容或直接重用(根据需求)
|
|
// fullScreenMonitor.DataContext = originalMonitor.DataContext;
|
|
// fullScreenPopup.IsOpen = true;
|
|
//}
|
|
|
|
//private void Shrink_Click(object sender, RoutedEventArgs e)
|
|
//{
|
|
// fullScreenPopup.IsOpen = false;
|
|
//}
|
|
}
|
|
}
|