
WPF上位机通用框架平台实战
WPF上位机通用框架平台实战
微软MVP Eleven
这个作者很懒,什么都没留下…
展开
-
2021-09-04 WPF上位机通用框架平台实战-设备编辑
窗体管理对象public class WindowManager{ static Dictionary<string, WindowStruct> _regWindows = new Dictionary<string, WindowStruct>(); public static void Register<T>(string name, Window owner = null) { if (!_regWindows.Con.原创 2021-09-04 10:07:54 · 33216 阅读 · 0 评论 -
2021-09-04 WPF上位机通用框架平台实战-全局监控对象
在程序启动的时候就实时监控设备public partial class App : Application{ protected override void OnStartup(StartupEventArgs e) { base.OnStartup(e); GlobalMonitor.Start(); if (new LoginWindow().ShowDialog() == true) { .原创 2021-09-04 10:07:11 · 32945 阅读 · 0 评论 -
2021-09-04 WPF上位机通用框架平台实战-Device
一:Device窗口布局和功能实现<UserControl x:Class="Zhaoxi.HostComputer.Views.DeviceView" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:mc="http.原创 2021-09-04 10:06:37 · 33361 阅读 · 0 评论 -
2021-09-04 WPF上位机通用框架平台实战-主窗口
一:主窗口布局和功能实现<Window x:Class="Zhaoxi.HostComputer.Views.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/e.原创 2021-09-04 10:05:17 · 33139 阅读 · 0 评论 -
2021-09-03 WPF上位机通用框架平台实战-Dashboard
一:Dashboard窗口布局和功能实现<UserControl x:Class="Zhaoxi.HostComputer.Views.MonitorView" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:mc=".原创 2021-09-03 10:03:25 · 33374 阅读 · 0 评论 -
2021-09-02 WPF上位机通用框架平台实战-登录窗口
一:登录窗口布局和功能实现<Window x:Class="Zhaoxi.HostComputer.Views.LoginWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com.原创 2021-09-02 08:35:30 · 33181 阅读 · 0 评论 -
2021-09-02 WPF上位机通用框架平台实战-项目架构图
一:项目整体架构图原创 2021-09-02 08:34:42 · 33735 阅读 · 0 评论