windLRPFile.xaml 1.1 KB

1234567891011121314151617181920212223
  1. <Window x:Class="RedmineOracle.windLRPFile"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:local="clr-namespace:RedmineOracle"
  7. mc:Ignorable="d"
  8. Title="windLRPFile" Height="450" Width="800"
  9. xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes">
  10. <Window.Resources>
  11. <DataTemplate x:Key="dtOutputFile">
  12. <Border BorderThickness="1,1,1,1" BorderBrush="Black">
  13. <StackPanel>
  14. <TextBlock Text="{Binding Name}"></TextBlock>
  15. <Button Content="Скачать" Click="Button_Click" Uid="{Binding id}"></Button>
  16. </StackPanel>
  17. </Border>
  18. </DataTemplate>
  19. </Window.Resources>
  20. <Grid>
  21. <ListBox Name="lbFile" ItemTemplate="{StaticResource dtOutputFile}"></ListBox>
  22. </Grid>
  23. </Window>