55 lines
2.8 KiB
XML
55 lines
2.8 KiB
XML
<Window x:Class="InfosysPublisher.WinMain"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:local="clr-namespace:InfosysPublisher"
|
|
mc:Ignorable="d"
|
|
Icon="infosysPublisher.ico"
|
|
Title="Infosys-Publisher" Height="445" Width="580">
|
|
<Grid Margin="10, 0, 10, 10">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="25"/>
|
|
<RowDefinition Height="25"/>
|
|
<RowDefinition Height="25"/>
|
|
<RowDefinition Height="25"/>
|
|
<RowDefinition Height="25"/>
|
|
<RowDefinition Height="*"/>
|
|
<RowDefinition Height="25"/>
|
|
<RowDefinition Height="*"/>
|
|
<RowDefinition Height="30"/>
|
|
</Grid.RowDefinitions>
|
|
<Label Grid.Row="0">Mapa projektov:</Label>
|
|
<TextBox Grid.Row="1" Name="TbProjectsPath"></TextBox>
|
|
<Label Grid.Row="2">Projekt:</Label>
|
|
<ComboBox Grid.Row="3" Name="CbProjects" DisplayMemberPath="Name"></ComboBox>
|
|
<Label Grid.Row="4" Name="LblProjectInfo">Verzija:</Label>
|
|
<Grid Grid.Row="5" Name="GridProgress" Visibility="Hidden">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="20" />
|
|
<ColumnDefinition Width="*" />
|
|
<ColumnDefinition Width="20" />
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="*"/>
|
|
<RowDefinition Height="30"/>
|
|
<RowDefinition Height="50"/>
|
|
<RowDefinition Height="*"/>
|
|
</Grid.RowDefinitions>
|
|
<ProgressBar x:Name="PbLoading" Grid.Row="1" Grid.Column="1" IsIndeterminate="True"/>
|
|
<Label x:Name="LblLoading" Grid.Row="2" Grid.Column="1" Content="Priprava podatkov" HorizontalAlignment="Center"/>
|
|
</Grid>
|
|
<Label Grid.Row="6">Output:</Label>
|
|
<TextBox Grid.Row="7" Name="TbOutput" VerticalScrollBarVisibility="Visible" HorizontalScrollBarVisibility="Auto" IsReadOnly="True"></TextBox>
|
|
<Grid Grid.Row="8" Margin="3">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="*"/>
|
|
<ColumnDefinition Width="*"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Button Grid.Column="0" Name="BtnSettings" Width="80" HorizontalAlignment="Left">Nastavitve</Button>
|
|
<CheckBox Grid.Column="1" Name="ChbCreateOnlyZip" Width="180" HorizontalAlignment="Left" VerticalAlignment="Center">Pripravi samo zip</CheckBox>
|
|
<Button Grid.Column="1" Name="BtnPublish" Width="80" HorizontalAlignment="Right">Potrdi</Button>
|
|
</Grid>
|
|
</Grid>
|
|
</Window>
|