123456789101112131415161718192021222324 |
- <Window x:Class="WechatPCMsgBakTool.SelectWechat"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:local="clr-namespace:WechatPCMsgBakTool"
- mc:Ignorable="d"
- WindowStartupLocation="CenterScreen"
- Title="选择微信" Height="300" Width="600">
- <Grid>
- <Label Content="请选择您要打开的微信:" HorizontalAlignment="Left" Margin="29,27,0,0" VerticalAlignment="Top"/>
- <ListView Name="list_process" Margin="32,55,32,67" SelectionChanged="list_process_SelectionChanged">
- <ListView.View>
- <GridView>
- <GridViewColumn Header="进程名" Width="80" DisplayMemberBinding="{Binding ProcessName}" />
- <GridViewColumn Header="PID" Width="50" DisplayMemberBinding="{Binding ProcessId}" />
- <GridViewColumn Header="路径" Width="300" DisplayMemberBinding="{Binding DBPath}" />
- </GridView>
- </ListView.View>
- </ListView>
- <Button Name="btn_close" Content="确定并返回" HorizontalAlignment="Left" Margin="240,231,0,0" VerticalAlignment="Top" Width="97" Click="btn_close_Click"/>
- </Grid>
- </Window>
|