It is invisible because of the same Grid.Row value as Command.
|
<TextBlock Grid.Row="1" Grid.Column="0" x:Name="CommandToRunLabel" Margin="5,0" VerticalAlignment="Center" ToolTip="The command line of the process to run while collecting data."> |
|
<Hyperlink Command="Help" CommandParameter="CommandToRunTextBox">Command:</Hyperlink> |
|
</TextBlock> |
|
<controls:HistoryComboBox Grid.Row="1" Margin="0,5,0,0" Grid.Column="1" x:Name="CommandToRunTextBox" VerticalAlignment="Center" KeyDown="CommandToRunKeyDown" AutomationProperties.Name="Command to run" /> |
|
|
|
<!-- FocusProcess section for Collect command--> |
|
<StackPanel Grid.Row="1" Grid.Column="0" Orientation="Horizontal"> |
|
<TextBlock Name="FocusProcessLabel" Margin="5,0" VerticalAlignment="Center" ToolTip="Name or PID of the process to collect user-mode events for."> |
|
<Hyperlink Command="Help" CommandParameter="FocusProcessTextBox">Focus process:</Hyperlink> |
|
</TextBlock> |
|
<CheckBox Name="FocusProcessCheckBox" VerticalAlignment="Center" Margin="1,2,2,0" Click="FocusProcessCheckBoxClicked" IsChecked="false" AutomationProperties.Name="Focus process" /> |
|
</StackPanel> |
|
<TextBox Grid.Row="1" Margin="0,5,0,0" Grid.Column="1" x:Name="FocusProcessTextBox" VerticalAlignment="Center" /> |

It is invisible because of the same Grid.Row value as Command.
perfview/src/PerfView/Dialogs/RunCommandDialog.xaml
Lines 41 to 53 in bb36ed7