22 lines
987 B
XML
22 lines
987 B
XML
<Window x:Class="InfosysPublisher.WinSettings"
|
|
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="WinSettings" Height="355" Width="355">
|
|
<Grid Margin="5">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="25"/>
|
|
<RowDefinition Height="25"/>
|
|
<RowDefinition Height="*"/>
|
|
<RowDefinition Height="25"/>
|
|
</Grid.RowDefinitions>
|
|
<Label Grid.Row="0">Trajanje build:</Label>
|
|
<TextBox Grid.Row="1" Name="TbBuildDuration"></TextBox>
|
|
<Button Name="BtnSave" Grid.Row="20" Width="80" HorizontalAlignment="Right">Shrani</Button>
|
|
</Grid>
|
|
</Window>
|