Skip to content

Commit

Permalink
Merge pull request #46 from AxaFrance/fix/ReportTbSearchWidth
Browse files Browse the repository at this point in the history
fix: align search tb to left in reportviewer
  • Loading branch information
huaxing-yuan authored Nov 14, 2023
2 parents 57889d9 + 7920c01 commit c55a50a
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/AxaFrance.WebEngine.ReportViewer/MainWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -137,9 +137,8 @@


<StackPanel Orientation="Vertical" VerticalAlignment="Top" Grid.Row="2" Grid.Column="0" Grid.RowSpan="2">

<StackPanel Orientation="Horizontal" HorizontalAlignment="Right" VerticalAlignment="Top">
<Label Content="Filter" HorizontalAlignment="Left" />
<StackPanel Orientation="Horizontal" HorizontalAlignment="left" VerticalAlignment="Top">
<Label Content="Filter" HorizontalAlignment="Left" />
<TextBox x:Name="txFilter" HorizontalAlignment="Left" TextWrapping="Wrap" Text="" Height="25" Width="175" TextChanged="TxFilter_OnTextChanged" />
<CheckBox x:Name="cbFailed" Content="Failed" Foreground="White" Checked="CbFailed_OnChecked" Unchecked="cbFailed_Unchecked"/>
</StackPanel>
Expand Down

0 comments on commit c55a50a

Please sign in to comment.