You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
1.3 KiB
23 lines
1.3 KiB
<windows:BaseWindow |
|
xmlns:windows="clr-namespace:KGIS.Framework.Utils;assembly=KGIS.Framework.Utils" |
|
x:Class="Kingo.Plugin.DTBYCL.View.UCSelectUSB" |
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
|
xmlns:dxlc="http://schemas.devexpress.com/winfx/2008/xaml/layoutcontrol" |
|
xmlns:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors" |
|
xmlns:dxg="http://schemas.devexpress.com/winfx/2008/xaml/grid" |
|
xmlns:local="clr-namespace:Kingo.Plugin.DTBYCL.View" |
|
mc:Ignorable="d" Title="选择加载任务USB移动存储" |
|
Height="280" Width="450" ResizeMode="NoResize"> |
|
<Grid> |
|
<ListView x:Name="listView" MouseDoubleClick="ListView_MouseDoubleClick"> |
|
<ListView.ItemTemplate> |
|
<DataTemplate> |
|
<TextBlock Height="25" FontSize="15" VerticalAlignment="Center" FontWeight="Bold" Text="{Binding}"/> |
|
</DataTemplate> |
|
</ListView.ItemTemplate> |
|
</ListView> |
|
</Grid> |
|
</windows:BaseWindow>
|
|
|