This pull request introduces a new feature to the Sampling Settings dialog in the Windows Performance GUI, allowing users to display decorated symbol names. The main changes include adding a new checkbox in the UI, updating the form to handle the new setting, and modifying the command line arguments accordingly.
This pull request introduces a new feature to the Sampling Settings dialog in the Windows Performance GUI, allowing users to display decorated symbol names. The main changes include adding a new checkbox in the UI, updating the form to handle the new setting, and modifying the command line arguments accordingly.
New Feature: Display Decorated Symbol Name
WindowsPerfGUI/ToolWindows/SamplingSetting/SamplingSettingDialog.xaml
: Added a new checkbox for enabling the display of decorated symbol names.WindowsPerfGUI/ToolWindows/SamplingSetting/SamplingSettings.cs
: Updated the command line arguments to include--sample-display-long
if the new setting is enabled.WindowsPerfGUI/ToolWindows/SamplingSetting/SamplingSettingsForm.cs
: Introduced a new propertySampleDisplayLong
to manage the state of the new checkbox and trigger property changes.Testing
Closes #14