
WPF上位机通用框架平台实战
WPF上位机通用框架平台实战
愚公搬代码
《头衔》:华为云特约编辑,华为云云享专家,华为开发者专家,华为产品云测专家,优快云博客专家,优快云商业化专家,阿里云专家博主,阿里云签约作者,腾讯云优秀博主,腾讯云内容共创官,掘金优秀博主,亚马逊技领云博主,51CTO博客专家等。
《近期荣誉》:2022年度博客之星TOP2,2023年度博客之星TOP2,2022年华为云十佳博主,2023年华为云十佳博主,2024年华为云十佳博主等。
《博客内容》:.NET、Java、Python、Go、Node、前端、IOS、Android、鸿蒙、Linux、物联网、网络安全、大数据、人工智能、U3D游戏、小程序等相关领域知识。
展开
-
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.Cont原创 2021-09-04 01:51:25 · 43313 阅读 · 1 评论 -
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) { n原创 2021-09-04 01:33:08 · 43596 阅读 · 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 01:15:06 · 43799 阅读 · 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="h原创 2021-09-03 02:23:01 · 44346 阅读 · 1 评论 -
2021-09-03 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/ex原创 2021-09-03 00:33:06 · 43897 阅读 · 1 评论 -
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 01:36:33 · 44055 阅读 · 0 评论 -
2021-09-01 WPF上位机通用框架平台实战-项目架构图
一:项目整体架构图原创 2021-09-01 21:36:12 · 44624 阅读 · 0 评论