Skip to content

Commit

Permalink
Add instruction text block for task filters.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kinematics committed Nov 22, 2016
1 parent 71d1598 commit a60d0ff
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions NetTally/QuestOptionsWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:NetTally"
mc:Ignorable="d"
Title="Quest Options" Height="393.284" Width="487" ResizeMode="NoResize" ShowInTaskbar="False" WindowStartupLocation="CenterOwner" Icon="CheckVoteWin.ico">
Title="Quest Options" Height="398.792" Width="487" ResizeMode="NoResize" ShowInTaskbar="False" WindowStartupLocation="CenterOwner" Icon="CheckVoteWin.ico">
<Grid>
<TextBlock x:Name="questLabel" HorizontalAlignment="Left" Margin="10,10,0,0" TextWrapping="Wrap" Text="Quest:" VerticalAlignment="Top" FontSize="14.667"/>
<TextBlock x:Name="questName" HorizontalAlignment="Left" Margin="56,10,0,0" TextWrapping="Wrap" Text="{Binding Path=SelectedQuest.DisplayName}" VerticalAlignment="Top" FontSize="14.667"/>
Expand Down Expand Up @@ -68,7 +68,9 @@
</ToolTip>
</CheckBox.ToolTip>
</CheckBox>
<TextBox x:Name="customTaskFilters" Height="23" Margin="30,272,10,0" TextWrapping="Wrap" VerticalAlignment="Top"
<TextBlock x:Name="textBlock" HorizontalAlignment="Left" Margin="30,259,0,0" TextWrapping="Wrap" Text="Limit tally results to the specified tasks only. This value is not saved across sessions."
VerticalAlignment="Top" Width="441"/>
<TextBox x:Name="customTaskFilters" Height="23" Margin="30,296,10,0" TextWrapping="Wrap" VerticalAlignment="Top"
Text="{Binding Path=SelectedQuest.CustomTaskFilters}" IsEnabled="{Binding ElementName=useCustomTaskFilters, Path=IsChecked}">
<TextBox.ToolTip>
<ToolTip>
Expand All @@ -80,7 +82,7 @@
</TextBox.ToolTip>
</TextBox>


<Button x:Name="closeButton" Content="Close" Margin="0,0,10,10" RenderTransformOrigin="0.244,1.117" IsCancel="True" IsDefault="True"
Click="closeButton_Click" Height="22" VerticalAlignment="Bottom" HorizontalAlignment="Right" Width="75"/>
</Grid>
Expand Down

0 comments on commit a60d0ff

Please sign in to comment.