The .NET Command Pattern, Part 2: Listing 6

MainWindow.xaml

<Window x:Class="VSMCommandPatternUndo.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:local="clr-namespace:VSMCommandPatternUndo.Commands"
        Title="MainWindow" Height="350" Width="525">
    <Window.Resources>
        <local:CutPresentationCommand x:Key="CutPresentationCommand" />
        <local:UndoCommand x:Key="UndoCommand" />
        <local:RedoCommand x:Key="RedoCommand" />
    </Window.Resources>
    <Window.InputBindings>
        <KeyBinding Key="M" Modifiers="Control" Command="{StaticResource CutPresentationCommand}"
CommandParameter="{Binding Path=Model}" /> <KeyBinding Key="U" Modifiers="Control" Command="{StaticResource UndoCommand}" /> <KeyBinding Key="R" Modifiers="Control" Command="{StaticResource RedoCommand}" /> </Window.InputBindings> <Grid> <StackPanel x:Name="PresentationPanel" Margin="10"> <StackPanel x:Name="Presentation" DataContext="{Binding Path=Model, Mode=TwoWay}"> <Label>Title</Label> <TextBox x:Name="Title" Text="{Binding Path=Title, Mode=TwoWay}"></TextBox> <Label>Presenter</Label> <TextBox x:Name="Presenter" Text="{Binding Path=Presenter, Mode=TwoWay}"></TextBox> <Label>Summary</Label> <TextBox x:Name="Summary" Text="{Binding Path=Summary, Mode=TwoWay}"
TextWrapping="Wrap" AcceptsReturn="True"></TextBox> </StackPanel> <StackPanel> <Button x:Name="Cut" Command="{StaticResource CutPresentationCommand}"
CommandParameter="{Binding Path=Model}" Margin="0,10,0,10">Cut</Button> <Button x:Name="Undo" Command="{StaticResource UndoCommand}">Undo</Button> <Button x:Name="Redo" Command="{StaticResource RedoCommand}" Margin="0,10,0,10">Redo</Button> </StackPanel> </StackPanel> </Grid> </Window>

About the Author

Eric Vogel is a Senior Software Developer for Red Cedar Solutions Group in Okemos, Michigan. He is the president of the Greater Lansing User Group for .NET. Eric enjoys learning about software architecture and craftsmanship, and is always looking for ways to create more robust and testable applications. Contact him at [email protected].

comments powered by Disqus

Featured

  • VS Code Copilot Gets Closer to Tab, Tab, Tab Coding

    Microsoft is previewing new AI tech that predicts next edits, allowing devs to just Tab to accept them and keep on going.

  • GitHub Previews Agentic AI in VS Code Copilot

    GitHub announced a raft of improvements to its Copilot AI in the Visual Studio Code editor, including a new "agent mode" in preview that lets developers use the AI technology to write code faster and more accurately.

  • Copilot Engineering in the Cloud with Azure and GitHub

    Who better to lead a full-day deep dive into this tech than two experts from GitHub, which introduced the original "AI pair programmer" and spawned the ubiquitous Copilot moniker?

  • Uno Platform Wants Microsoft to Improve .NET WebAssembly in Two Ways

    Uno Platform, a third-party dev tooling specialist that caters to .NET developers, published a report on the state of WebAssembly, addressing some shortcomings in the .NET implementation it would like to see Microsoft address.

  • Random Neighborhoods Regression Using C#

    Dr. James McCaffrey from Microsoft Research presents a complete end-to-end demonstration of the random neighborhoods regression technique, where the goal is to predict a single numeric value. Compared to other ML regression techniques, advantages are that it can handle both large and small datasets, and the results are highly interpretable.

Subscribe on YouTube

Upcoming Training Events