1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <Page x:Class="RedmineOracle.pgListLRP"
- 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="pgListLRP"
- xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes">
- <Page.Resources>
- <DataTemplate x:Key="dtListLRP">
- <Border BorderBrush="Black" BorderThickness="1,1">
- <StackPanel>
- <StackPanel Orientation="Horizontal">
- <TextBlock Text="{Binding LRP_ID}" Background="Aqua" MouseDown="TextBlock_MouseDown"></TextBlock>
- <TextBlock Text=" | "></TextBlock>
- <TextBlock Text="{Binding LRP_PRIORITET_ID}"></TextBlock>
- <TextBlock Text=" | "></TextBlock>
- <TextBlock Text="{Binding SYSTEM_NAME}"></TextBlock>
- <TextBlock Text=" | "></TextBlock>
- <TextBlock Text="{Binding LRP_STATUS_NAME}"></TextBlock>
- <TextBlock Text=" | "></TextBlock>
- <TextBlock Text="{Binding LRP_TIME_OPEN}"></TextBlock>
- </StackPanel>
- <StackPanel>
- <TextBlock Text="{Binding RESPOND}"></TextBlock>
- <TextBlock Text="{Binding LRP_MINI_INF}"></TextBlock>
- </StackPanel>
- <StackPanel Orientation="Horizontal">
- <TextBlock Text="{Binding TIME_CHANGE}"></TextBlock>
- <TextBlock Text=" | "></TextBlock>
- <TextBlock Text="{Binding DRP_CHANGE}"></TextBlock>
- </StackPanel>
- </StackPanel>
- </Border>
- </DataTemplate>
- </Page.Resources>
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="64*"/>
- <RowDefinition Height="167*"/>
- <RowDefinition Height="219*"/>
- </Grid.RowDefinitions>
- <StackPanel Orientation="Horizontal">
- <TextBox Name="tbIdLRP" Width="100px" Height="60px"></TextBox>
- <Button x:Name="btnFind" Content="Найти ЛРП" Click="btnFind_Click" Width="100px" Height="60px"></Button>
- <ComboBox Name="tbResrond" TextBoxBase.TextChanged="tbResrond_TextChanged" SelectionChanged="tbResrond_SelectionChanged" IsEditable="True" IsTextSearchEnabled="False"></ComboBox>
- <ComboBox Name="cbStatus"></ComboBox>
- </StackPanel>
- <ListBox Name="lbLRPOpen" ItemTemplate="{StaticResource dtListLRP}" Grid.Row="1"></ListBox>
- <ListBox Name="lbLRP" ItemTemplate="{StaticResource dtListLRP}" Grid.Row="2"></ListBox>
- </Grid>
- </Page>
|