
WPF
as_chengge
这个作者很懒,什么都没留下…
展开
-
WPF 窗口单实例
测试了一下,发现窗口缩小后不能自动跳到最前端,暂时没有时间去解决public partial class App : Application { protected override void OnStartup(StartupEventArgs e) { base.OnStartup(e); M...原创 2019-09-03 23:04:11 · 1018 阅读 · 0 评论 -
WPF 拖拽
<Window x:Class="Max32andAfter.DragTest" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="ht...原创 2019-09-15 00:11:18 · 493 阅读 · 0 评论 -
C# WPF值转换
一、WPF 代码<Grid> <Grid.ColumnDefinitions> <ColumnDefinition/> <ColumnDefinition Width="Auto"/> </Grid.ColumnDefinitions> ...原创 2019-09-15 21:16:51 · 588 阅读 · 0 评论 -
WPF 路由事件
一、在xaml窗口引入当前窗口隐藏类Command="{x:Static commands:RoutedCommands.AddRoutedCommad}"二、实例化路由方法<Window.CommandBindings> <CommandBinding Command="{x:Static commands:Routed...原创 2019-09-19 23:35:02 · 163 阅读 · 0 评论