|
96 | 96 | </StackPanel>
|
97 | 97 | </HierarchicalDataTemplate>
|
98 | 98 | <DataTemplate x:Key="WorkflowItemTemplate">
|
99 |
| - <TextBlock Text="{Binding Name}" Tag="{Binding Id}"> |
| 99 | + <TextBlock Text="{Binding Name}" Tag="{Binding Id}" ToolTipService.ToolTip="{Binding RelativeSource={RelativeSource Self}, Path=Text}"> |
100 | 100 | <TextBlock.ContextMenu>
|
101 | 101 | <ContextMenu>
|
102 | 102 | <MenuItem Header="{x:Static resx:UIStrings.RUN_WORKFLOW}" Click="RunWorkflow_Click" CommandParameter="{Binding RelativeSource={RelativeSource Mode=FindAncestor, AncestorType={x:Type ContextMenu}}}">
|
|
109 | 109 | </TextBlock>
|
110 | 110 | </DataTemplate>
|
111 | 111 | <DataTemplate x:Key="EnvironmentItemTemplate">
|
112 |
| - <TextBlock Text="{Binding Name}"/> |
| 112 | + <TextBlock Text="{Binding Name}" ToolTipService.ToolTip="{Binding RelativeSource={RelativeSource Self}, Path=Text}"/> |
113 | 113 | </DataTemplate>
|
114 | 114 | </UserControl.Resources>
|
115 | 115 | <Grid VerticalAlignment="Stretch">
|
|
122 | 122 | <TextBlock HorizontalAlignment="Center" x:Name="MessageArea" />
|
123 | 123 | <ScrollViewer VerticalAlignment="Stretch" VerticalScrollBarVisibility="Auto" HorizontalScrollBarVisibility="Auto" Margin="5,5,0,0" x:Name="ActionsInfoPanel">
|
124 | 124 | <StackPanel Orientation="Vertical">
|
125 |
| - <Expander Header="{x:Static resx:UIStrings.HEADER_CURRENT_BRANCH}" x:Name="CurrentBranchExpander" FontWeight="Bold"> |
| 125 | + <Expander Header="{x:Static resx:UIStrings.HEADER_CURRENT_BRANCH}" x:Name="CurrentBranchExpander" FontWeight="Bold" ToolTipService.ToolTip="{Binding RelativeSource={RelativeSource Self}, Path=Header}"> |
126 | 126 | <TreeView BorderThickness="0" FontWeight="Normal" PreviewMouseWheel="HandlePreviewMouseWheel" x:Name="tvCurrentBranch" ItemTemplate="{StaticResource TreeViewRunNodeDataTemplate}" HorizontalAlignment="Stretch" HorizontalContentAlignment="Stretch">
|
127 | 127 | <TreeView.Resources>
|
128 | 128 | <Style TargetType="{x:Type TreeViewItem}" BasedOn="{StaticResource {x:Static shell:VsResourceKeys.ThemedDialogTreeViewItemStyleKey}}">
|
|
131 | 131 | </TreeView.Resources>
|
132 | 132 | </TreeView>
|
133 | 133 | </Expander>
|
134 |
| - <Expander Header="{x:Static resx:UIStrings.HEADER_WORKFLOWS}" FontWeight="Bold"> |
| 134 | + <Expander Header="{x:Static resx:UIStrings.HEADER_WORKFLOWS}" FontWeight="Bold" ToolTipService.ToolTip="{Binding RelativeSource={RelativeSource Self}, Path=Header}"> |
135 | 135 | <TreeView BorderThickness="0" FontWeight="Normal" PreviewMouseWheel="HandlePreviewMouseWheel" x:Name="tvWorkflows" ItemTemplate="{StaticResource WorkflowItemTemplate}"/>
|
136 | 136 | </Expander>
|
137 |
| - <Expander Header="{x:Static resx:UIStrings.HEADER_SECRETS}" FontWeight="Bold"> |
| 137 | + <Expander Header="{x:Static resx:UIStrings.HEADER_SECRETS}" FontWeight="Bold" ToolTipService.ToolTip="{Binding RelativeSource={RelativeSource Self}, Path=Header}"> |
138 | 138 | <TreeView BorderThickness="0" PreviewMouseWheel="HandlePreviewMouseWheel" FontWeight="Normal">
|
139 |
| - <TreeViewItem Header="{x:Static resx:UIStrings.HEADER_ENVIRONMENTS}" HeaderTemplate="{StaticResource EnvironmentHeaderTemplate}" x:Name="tvEnvironments" ItemTemplate="{StaticResource EnvironmentItemTemplate}" /> |
140 |
| - <TreeViewItem Header="{x:Static resx:UIStrings.HEADER_SECRETS}" HeaderTemplate="{StaticResource SecretsHeaderTemplate}"> |
141 |
| - <TreeViewItem x:Name="tvSecrets" HeaderTemplate="{StaticResource RepoSecretsHeaderTemplate}"> |
| 139 | + <TreeViewItem ToolTipService.ToolTip="{Binding RelativeSource={RelativeSource Self}, Path=Header}" Header="{x:Static resx:UIStrings.HEADER_ENVIRONMENTS}" HeaderTemplate="{StaticResource EnvironmentHeaderTemplate}" x:Name="tvEnvironments" ItemTemplate="{StaticResource EnvironmentItemTemplate}" /> |
| 140 | + <TreeViewItem ToolTipService.ToolTip="{Binding RelativeSource={RelativeSource Self}, Path=Header}" Header="{x:Static resx:UIStrings.HEADER_SECRETS}" HeaderTemplate="{StaticResource SecretsHeaderTemplate}"> |
| 141 | + <TreeViewItem ToolTipService.ToolTip="{Binding RelativeSource={RelativeSource Self}, Path=Header}" x:Name="tvSecrets" HeaderTemplate="{StaticResource RepoSecretsHeaderTemplate}"> |
142 | 142 | <TreeViewItem.Resources>
|
143 | 143 | <Style TargetType="{x:Type TreeViewItem}" BasedOn="{StaticResource {x:Static shell:VsResourceKeys.ThemedDialogTreeViewItemStyleKey}}">
|
144 | 144 | <EventSetter Event="MouseDoubleClick" Handler="Secret_MouseDoubleClick"/>
|
145 | 145 | </Style>
|
146 | 146 | </TreeViewItem.Resources>
|
147 | 147 | <TreeViewItem.ItemTemplate>
|
148 | 148 | <DataTemplate>
|
149 |
| - <TextBlock Text="{Binding}"> |
| 149 | + <TextBlock Text="{Binding}" ToolTipService.ToolTip="{Binding RelativeSource={RelativeSource Self}, Path=Text}"> |
150 | 150 | <TextBlock.ContextMenu>
|
151 | 151 | <ContextMenu>
|
152 | 152 | <MenuItem Header="{x:Static resx:UIStrings.EDIT_SECRET}" Click="EditSecret_Click" CommandParameter="{Binding RelativeSource={RelativeSource Mode=FindAncestor, AncestorType={x:Type ContextMenu}}}">
|
|
0 commit comments