개정판 a9e86f7a
Database FIlter 추가
Change-Id: I9ff41db0744b05a8589ac74b237994ab4f019074
ConvertService/ServiceBase/Markus.Service.StationController/Views/DatabaseFilter.xaml | ||
---|---|---|
1 |
<UserControl x:Class="Markus.Service.StationController.Views.DatabaseFilter" |
|
2 |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
|
3 |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
|
4 |
xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" |
|
5 |
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
|
6 |
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
|
7 |
xmlns:local="clr-namespace:Markus.Service.StationController.Views" |
|
8 |
mc:Ignorable="d"> |
|
9 |
<Grid> |
|
10 |
<Grid.RowDefinitions> |
|
11 |
<RowDefinition/> |
|
12 |
<RowDefinition/> |
|
13 |
<RowDefinition/> |
|
14 |
<RowDefinition/> |
|
15 |
<RowDefinition/> |
|
16 |
</Grid.RowDefinitions> |
|
17 |
<Grid.ColumnDefinitions> |
|
18 |
<ColumnDefinition/> |
|
19 |
<ColumnDefinition/> |
|
20 |
<ColumnDefinition/> |
|
21 |
<ColumnDefinition/> |
|
22 |
</Grid.ColumnDefinitions> |
|
23 |
|
|
24 |
<TextBlock Text="ProjectNumber : " Grid.Row="0" Grid.Column="0"/> |
|
25 |
<telerik:RadMaskedTextInput IsClearButtonVisible="True" |
|
26 |
EmptyContent="placeholder text" |
|
27 |
TextMode="PlainText" Text="{Binding ProjectNumberFilter, UpdateSourceTrigger=PropertyChanged}" |
|
28 |
Grid.Row="0" Grid.Column="1" |
|
29 |
HorizontalAlignment="Center" |
|
30 |
VerticalAlignment="Center"/> |
|
31 |
|
|
32 |
<TextBlock Text="UniqueKey : " Grid.Row="0" Grid.Column="2"/> |
|
33 |
<telerik:RadMaskedTextInput IsClearButtonVisible="True" |
|
34 |
EmptyContent="placeholder text" Text="{Binding UniqueKeyFilter, UpdateSourceTrigger=PropertyChanged}" |
|
35 |
TextMode="PlainText" Grid.Row="0" Grid.Column="3" |
|
36 |
HorizontalAlignment="Center" |
|
37 |
VerticalAlignment="Center"/> |
|
38 |
|
|
39 |
<TextBlock Text="ConvertState : " Grid.Row="1" Grid.Column="0"/> |
|
40 |
<telerik:RadMaskedTextInput IsClearButtonVisible="True" |
|
41 |
EmptyContent="placeholder text" |
|
42 |
TextMode="PlainText" Grid.Row="1" Grid.Column="1" |
|
43 |
HorizontalAlignment="Center" |
|
44 |
VerticalAlignment="Center"/> |
|
45 |
|
|
46 |
<TextBlock Text="Docuemnt NO : " Grid.Row="1" Grid.Column="2"/> |
|
47 |
<telerik:RadMaskedTextInput IsClearButtonVisible="True" |
|
48 |
EmptyContent="placeholder text" |
|
49 |
TextMode="PlainText" Grid.Row="1" Grid.Column="3" |
|
50 |
HorizontalAlignment="Center" |
|
51 |
VerticalAlignment="Center"/> |
|
52 |
|
|
53 |
<TextBlock Text="Docuemnt Name : " Grid.Row="2" Grid.Column="0"/> |
|
54 |
<telerik:RadMaskedTextInput IsClearButtonVisible="True" |
|
55 |
EmptyContent="placeholder text" |
|
56 |
TextMode="PlainText" Grid.Row="2" Grid.Column="1" |
|
57 |
HorizontalAlignment="Center" |
|
58 |
VerticalAlignment="Center"/> |
|
59 |
|
|
60 |
<TextBlock Text="Reconverter : " Grid.Row="2" Grid.Column="2"/> |
|
61 |
<telerik:RadMaskedTextInput IsClearButtonVisible="True" |
|
62 |
EmptyContent="placeholder text " |
|
63 |
TextMode="PlainText" Grid.Row="2" Grid.Column="3" |
|
64 |
HorizontalAlignment="Center" |
|
65 |
VerticalAlignment="Center"/> |
|
66 |
|
|
67 |
<TextBlock Text="Service ID : " Grid.Row="3" Grid.Column="0"/> |
|
68 |
<telerik:RadMaskedTextInput IsClearButtonVisible="True" |
|
69 |
EmptyContent="placeholder text" |
|
70 |
TextMode="PlainText" Grid.Row="3" Grid.Column="1" |
|
71 |
HorizontalAlignment="Center" |
|
72 |
VerticalAlignment="Center"/> |
|
73 |
|
|
74 |
<TextBlock Text="Revision : " Grid.Row="3" Grid.Column="2"/> |
|
75 |
<telerik:RadMaskedTextInput IsClearButtonVisible="True" |
|
76 |
EmptyContent="placeholder text" |
|
77 |
TextMode="PlainText" Grid.Row="3" Grid.Column="3" |
|
78 |
HorizontalAlignment="Center" |
|
79 |
VerticalAlignment="Center"/> |
|
80 |
<StackPanel Grid.Row="4" Grid.ColumnSpan="4"> |
|
81 |
<StackPanel Orientation="Horizontal" Margin="4"> |
|
82 |
<TextBlock Text="CreateTime : "/> |
|
83 |
<telerik:RadDateTimePicker x:Name="datePicker1" |
|
84 |
InputMode="DateTimePicker" Width="200" |
|
85 |
VerticalAlignment="Center" |
|
86 |
HorizontalAlignment="Center" |
|
87 |
SelectedValue="{Binding SelectedGeneratorBegin ,Mode=TwoWay, UpdateSourceTrigger=PropertyChanged }" |
|
88 |
Margin="0,1"> |
|
89 |
</telerik:RadDateTimePicker> |
|
90 |
<DatePicker Text="{Binding OpenStartTime, StringFormat='yy.mm.dd HH:mm:ss' ,RelativeSource={RelativeSource AncestorType={x:Type DatePicker}}}" SelectedDate="{Binding SelectedOpenTime}" Width="124" SelectedDateFormat="Long" Margin="0,-1,0,1"/> |
|
91 |
<TextBlock Text=" ~ "/> |
|
92 |
<telerik:RadDateTimePicker x:Name="datePicker2" |
|
93 |
InputMode="DateTimePicker" Width="200" |
|
94 |
VerticalAlignment="Center" |
|
95 |
HorizontalAlignment="Center" |
|
96 |
SelectedValue="{Binding SelectedGeneratorEnd ,Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" |
|
97 |
Margin="0,1"> |
|
98 |
</telerik:RadDateTimePicker> |
|
99 |
<DatePicker Text="{Binding OpenStartTime, StringFormat='yy.mm.dd HH:mm:ss' ,RelativeSource={RelativeSource AncestorType={x:Type DatePicker}}}" SelectedDate="{Binding SelectedOpenTime}" Width="124" SelectedDateFormat="Long" Margin="0,-1,0,1"/> |
|
100 |
|
|
101 |
|
|
102 |
<telerik:RadMaskedTextInput IsClearButtonVisible="True" |
|
103 |
EmptyContent="placeholder text" |
|
104 |
TextMode="PlainText" |
|
105 |
HorizontalAlignment="Center" |
|
106 |
VerticalAlignment="Center"/> |
|
107 |
</StackPanel> |
|
108 |
</StackPanel> |
|
109 |
</Grid> |
|
110 |
</UserControl> |
|
111 |
|
|
112 |
|
ConvertService/ServiceBase/Markus.Service.StationController/Views/DatabaseFilter.xaml.cs | ||
---|---|---|
1 |
using System; |
|
2 |
using System.Collections.Generic; |
|
3 |
using System.Linq; |
|
4 |
using System.Text; |
|
5 |
using System.Threading.Tasks; |
|
6 |
using System.Windows; |
|
7 |
using System.Windows.Controls; |
|
8 |
using System.Windows.Data; |
|
9 |
using System.Windows.Documents; |
|
10 |
using System.Windows.Input; |
|
11 |
using System.Windows.Media; |
|
12 |
using System.Windows.Media.Imaging; |
|
13 |
using System.Windows.Navigation; |
|
14 |
using System.Windows.Shapes; |
|
15 |
|
|
16 |
namespace Markus.Service.StationController.Views |
|
17 |
{ |
|
18 |
/// <summary> |
|
19 |
/// DatabaseFilter.xaml에 대한 상호 작용 논리 |
|
20 |
/// </summary> |
|
21 |
public partial class DatabaseFilter : UserControl |
|
22 |
{ |
|
23 |
public DatabaseFilter() |
|
24 |
{ |
|
25 |
InitializeComponent(); |
|
26 |
} |
|
27 |
} |
|
28 |
} |
내보내기 Unified diff