惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
G
Google Developers Blog
小众软件
小众软件
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园 - 【当耐特】
爱范儿
爱范儿
博客园 - 聂微东
美团技术团队
大猫的无限游戏
大猫的无限游戏
The Cloudflare Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
有赞技术团队
有赞技术团队
云风的 BLOG
云风的 BLOG
罗磊的独立博客
V
Visual Studio Blog
WordPress大学
WordPress大学
Stack Overflow Blog
Stack Overflow Blog
雷峰网
雷峰网
人人都是产品经理
人人都是产品经理
Blog — PlanetScale
Blog — PlanetScale
V
V2EX
The GitHub Blog
The GitHub Blog
Apple Machine Learning Research
Apple Machine Learning Research
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
A Semantic Approach to WPF and MVVM with Clprolf framework
Charles Koffler · 2026-06-14 · via DEV Community

Charles Koffler

Introduction

WPF and the MVVM (Model-View-ViewModel) pattern are powerful tools for desktop development. However, as applications grow, the technical plumbing—commands, data binding, notifications—can sometimes cloud the architectural intent. We can easily lose track of the conceptual meaning of our classes behind their technical implementations.

To bring more clarity to my desktop architectures, let's try a lightweight framework Clprolf. The goal is simple: use basic custom C# attributes to give every class a clear, human-readable role, and enforce these boundaries with automated architecture tests using ArchUnitNET.

Here is how it looks in practice.


The Core Concepts: Agents and Workers

Instead of categorizing code strictly by technical layers, Clprolf looks at the application as a team of actors working together:

  1. Agents: Core components that carry an identity, state, representation, or behavioral intention.
  2. Workers: Quiet executors or infrastructure tools that handle background or mechanical tasks.

When applied to WPF and MVVM, the system naturally organizes into three distinct types of Agents:

  • Domain Agents (User): The pure business entities holding the core data and identity.
  • Presentation Agents (UserViewModel): The ambassadors between the user and the system, orchestrating data and validating user intentions.
  • System-Oriented Agents (UserWindow & RelayCommand): Noble UI components whose purpose is to interact with and feed the hidden, native rendering engine of the .NET framework.

The Code in Action

Here is a streamlined look at how a standard CRUD ViewModel expresses its semantic role through attributes and clean design:

using System.Collections.ObjectModel;
using System.ComponentModel;
using System.Windows.Input;
using Clprolf.ArchUnitNet.Attributes;

namespace Clprolf.Example.WPF.Mvvm.Impl
{
    [ClAgent] // Marked as a Presentation Agent
    public class UserViewModel : IUserViewModel
    {
        public event PropertyChangedEventHandler? PropertyChanged;

        // ObservableCollection handles UI notification for list updates
        public ObservableCollection<User> Users { get; set; } = new();

        private User? _selectedUser;
        public User? SelectedUser
        {
            get => _selectedUser;
            set
            {
                if (_selectedUser != value)
                {
                    _selectedUser = value;
                    OnPropertyChanged(nameof(SelectedUser));
                    if (_selectedUser != null) NewUserName = _selectedUser.Name;
                }
            }
        }

        private string _newUserName = string.Empty;
        public string NewUserName
        {
            get => _newUserName;
            set
            {
                if (_newUserName != value)
                {
                    _newUserName = value;
                    OnPropertyChanged(nameof(NewUserName));
                }
            }
        }

        // Intention Agents (CRUD Commands)
        public ICommand AddCommand { get; }

        public UserViewModel()
        {
            AddCommand = new RelayCommand(ExecuteAdd, CanExecuteAdd);

            // Initial data seeding
            // (In a full production setup, this would be fetched from a Repository Worker)
            Users.Add(new User("Alice"));
            Users.Add(new User("Bob"));
        }

        public void ExecuteAdd(object? parameter)
        {
            Users.Add(new User(NewUserName));
            NewUserName = string.Empty; 
            // Save to repository worker here...
        }

        public bool CanExecuteAdd(object? parameter) => !string.IsNullOrWhiteSpace(NewUserName);

        private void OnPropertyChanged(string propertyName)
        {
            PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
        }
    }
}

The Architecture Blueprint

To see how this language structures a real application, here is the exact layout of the WPF project. Notice how the namespaces map directly to our semantic roles rather than generic UI folders:

Clprolf.Example.WPF/
│
├── App.xaml.cs                     --> [ClWorker] (Application Bootstrapper)
│
├── Entities/
│   └── User.cs                     --> [ClAgent] (Domain Identity)
│
├── Mvvm/
│   ├── IUserViewModel.cs           --> [ClFamily] [ClAgent] (Contract)
│   └── Impl/
│       └── UserViewModel.cs        --> [ClAgent] (Presentation Ambassador)
│
└── Agents/
    └── Impl/
        └── SystemOriented/
            ├── UserWindow.xaml.cs  --> [ClAgent] (UI Component)
            ├── RelayCommand.cs     --> [ClAgent] (Intention Driver)
            └── IClNotifyPropertyChanged.cs --> [ClTrait] (Structural Behavior)

As you can see, every single component—from the window to the command framework—has been assigned a strict semantic responsibility.


Wiring the Ecosystem Together

To understand how these Agents interact, look at how the application starts.

First, we have our UserWindow, a System-Oriented Agent designed to serve the native WPF rendering engine by hosting the visual tree and binding the context:

[ClAgent]
public partial class UserWindow : Window
{
    public UserWindow(UserViewModel vm)
    {
        InitializeComponent();
        DataContext = vm;
    }
}

Then, we have the App.xaml.cs. This is not an Agent; it has no business intent. It is a Clprolf Worker—an automated executor whose only job is to assemble the pieces, inject the dependencies, and start the factory:

[ClWorker]
public partial class App : Application
{
    protected override void OnStartup(StartupEventArgs e)
    {
        base.OnStartup(e);

        var vm = new UserViewModel();
        var userWin = new UserWindow(vm);

        userWin.Show(); // The worker hands over control to the System Agents
    }
}

Guarding the Architecture with ArchUnitNET

To ensure these semantic boundaries are never violated during development, we use automated architecture tests. For instance, we can write a rule ensuring that any interface marked as a Trait (a reusable structural behavior) only extends other Traits or external system interfaces, preventing illegal coupling with hard Agents.

Here is the condition that enforces this:

internal sealed class TraitInterfacesMustExtendOnlyTraitInterfacesCondition : ICondition<Interface>
{
    public string Description => "extend only trait interfaces";

    public IEnumerable<ConditionResult> Check(IEnumerable<Interface> objects, Architecture architecture)
    {
        foreach (var interf in objects)
        {
            if (!interf.IsTrait()) continue; 

            // Validate that Clprolf parents are strictly other Traits
            bool allParentsAreTraitsOrNonClprolf = interf.ImplementedInterfaces.All(parent => 
                !parent.IsClprolf() || parent.IsTrait()
            );

            yield return new ConditionResult(
                interf, 
                allParentsAreTraitsOrNonClprolf, 
                "Verifying semantic inheritance rules.");
        }
    }
}


Conclusion

By mapping the technical structure of MVVM into a simple, unified vocabulary of Agents and Workers, the cognitive load drops. The architecture stops being just about "WPF mechanics" and becomes a clear map of responsibilities.

The main benefit of this approach is consistency: whether you are looking at a desktop view-model, a web API controller, or a console application, the semantic definitions remain the same.