Skip to content
This repository has been archived by the owner on Jul 6, 2020. It is now read-only.

Commit

Permalink
Enabled sorting row in methods view.
Browse files Browse the repository at this point in the history
  • Loading branch information
VahidN committed Apr 1, 2015
1 parent e5078dc commit 2a4e0ac
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions DNTProfiler.Infrastructure/Views/CallingMethodsHierarchy.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
x:Name="LstStack"
HorizontalAlignment="Stretch" VerticalAlignment="Stretch"
MinHeight="100"
MaxHeight="250"
ScrollViewer.HorizontalScrollBarVisibility="Disabled"
ScrollViewer.CanContentScroll="True"
VirtualizingStackPanel.IsVirtualizing="True"
Expand Down Expand Up @@ -50,21 +51,22 @@
</DataTemplate>
</GridViewColumn.CellTemplate>
</GridViewColumn>
<GridViewColumn Width="170" Header="File">
<GridViewColumn Width="170" Header="File" behaviors:GridViewSortBehavior.PropertyName="CallingFile">
<GridViewColumn.CellTemplate>
<DataTemplate>
<TextBlock Text="{Binding CallingFile, Mode=OneTime}" ToolTip="{Binding StackTrace, Mode=OneTime}" />
</DataTemplate>
</GridViewColumn.CellTemplate>
</GridViewColumn>
<GridViewColumn Width="50" Header="Line">
<GridViewColumn Width="50" Header="Line" behaviors:GridViewSortBehavior.PropertyName="CallingLine">
<GridViewColumn.CellTemplate>
<DataTemplate>
<TextBlock Text="{Binding CallingLine, Mode=OneTime}" ToolTip="{Binding StackTrace, Mode=OneTime}" />
</DataTemplate>
</GridViewColumn.CellTemplate>
</GridViewColumn>
<GridViewColumn Width="170" Header="Method"
behaviors:GridViewSortBehavior.PropertyName="CallingMethod"
behaviors:AutoSizeListViewColumns.AutoSizeColumn="True">
<GridViewColumn.CellTemplate>
<DataTemplate>
Expand Down
4 changes: 2 additions & 2 deletions DNTProfiler.MetaData/SharedAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
#endif

// Assembly Versions are incremented manually when branching the code for a release.
[assembly: AssemblyVersion("1.3.818.0")]
[assembly: AssemblyVersion("1.3.820.0")]
// Assembly File Version should be incremented automatically as part of the build process.
[assembly: AssemblyFileVersion("1.3.818.0")]
[assembly: AssemblyFileVersion("1.3.820.0")]

0 comments on commit 2a4e0ac

Please sign in to comment.