1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <Page x:Class="RedmineOracle.pgRmList"
- 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:local="clr-namespace:RedmineOracle"
- mc:Ignorable="d"
- d:DesignHeight="450" d:DesignWidth="800"
- Title="pgRmList"
- xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes">
- <Page.Resources>
- <DataTemplate x:Key="tmpList">
- <Border BorderBrush="Black" BorderThickness="1,1">
- <StackPanel>
- <StackPanel Orientation="Horizontal">
- <TextBlock Text="{Binding Id}" Background="Aqua" MouseDown="TextBlock_MouseDown"></TextBlock>
- <TextBlock Text=" | " ></TextBlock>
- <TextBlock Text="{Binding idLRP}" ></TextBlock>
- <TextBlock Text=" | " ></TextBlock>
- <TextBlock Text="{Binding Status}" ></TextBlock>
- <TextBlock Text=" | " ></TextBlock>
- <TextBlock Text="{Binding CreatedOn}" ></TextBlock>
- <TextBlock Text=" | " ></TextBlock>
- <TextBlock Text="{Binding DateComplite}" ></TextBlock>
- </StackPanel>
- <TextBlock Text="{Binding Responsible}" ></TextBlock>
- <StackPanel Orientation="Horizontal">
- <TextBlock Text="{Binding Project}"></TextBlock>
- <TextBlock Text=" | " ></TextBlock>
- <TextBlock Text="{Binding Name}"></TextBlock>
- </StackPanel>
- <StackPanel Orientation="Horizontal">
- <TextBlock Text="{Binding DateLastComment}" Visibility="{Binding VisibilityDateLastComment}"></TextBlock>
- <TextBlock Text=" | " Visibility="{Binding VisibilityDateLastComment}"></TextBlock>
- <TextBlock Text="{Binding Journal}"></TextBlock>
- </StackPanel>
- </StackPanel>
- </Border>
- </DataTemplate>
- </Page.Resources>
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="32*"/>
- <RowDefinition Height="193*"/>
- </Grid.RowDefinitions>
- <StackPanel Grid.Row="0" Orientation="Horizontal">
- <ComboBox Name="cbRespIss" SelectionChanged="cbRespIss_SelectionChanged"></ComboBox>
- <Button Name="btnClear" Click="btnClear_Click" Content="Сбросить"></Button>
- </StackPanel>
- <ListBox Name="lbRmIssues" ItemTemplate="{StaticResource tmpList}" Grid.Row="1"></ListBox>
- </Grid>
- </Page>
|