Tooltip
This commit is contained in:
@@ -348,14 +348,14 @@
|
||||
<Button
|
||||
Command="{Binding Command}"
|
||||
CommandParameter="{Binding DataContext, RelativeSource={RelativeSource AncestorType={x:Type ItemsControl}}}"
|
||||
Style="{StaticResource AssistentCommandButtonStyle}"
|
||||
Style="{StaticResource AssistentCommandButtonStyle}"
|
||||
ToolTip="{Binding Name}">
|
||||
<Path
|
||||
Data="{Binding Icon}"
|
||||
Width="16"
|
||||
Height="16"
|
||||
Fill="Black"
|
||||
Stretch="Fill"/>
|
||||
Width="16"
|
||||
Height="16"
|
||||
Data="{Binding Icon}"
|
||||
Fill="Black"
|
||||
Stretch="Fill" />
|
||||
</Button>
|
||||
</DataTemplate>
|
||||
</ItemsControl.ItemTemplate>
|
||||
@@ -509,14 +509,14 @@ Fill="Black"
|
||||
HorizontalAlignment="Right"
|
||||
Command="{Binding DataContext.SavePromptCommand, RelativeSource={RelativeSource AncestorType={x:Type ListView}}}"
|
||||
CommandParameter="{Binding}"
|
||||
ToolTip="Speichern"
|
||||
Style="{StaticResource UserMessageSaveButtonStyle}" >
|
||||
Style="{StaticResource UserMessageSaveButtonStyle}"
|
||||
ToolTip="Speichern">
|
||||
<Path
|
||||
Data="{StaticResource Phosphor.FloppyDisk}"
|
||||
Width="16"
|
||||
Height="16"
|
||||
Fill="Black"
|
||||
Stretch="Fill"/>
|
||||
Width="16"
|
||||
Height="16"
|
||||
Data="{StaticResource Phosphor.FloppyDisk}"
|
||||
Fill="Black"
|
||||
Stretch="Fill" />
|
||||
</Button>
|
||||
</Grid>
|
||||
</DataTemplate>
|
||||
|
||||
@@ -36,7 +36,7 @@
|
||||
Content="{StaticResource AiDesignsIconKIChatWeissOrange}"
|
||||
ToolTipService.ShowOnDisabled="True">
|
||||
<Button.ToolTip>
|
||||
<TextBlock Text="{Binding TooltipName, StringFormat='{}{0} öffnen'}" />
|
||||
<TextBlock Text="{Binding TooltipName, StringFormat='KI Chat über {}{0} öffnen'}" />
|
||||
</Button.ToolTip>
|
||||
<!--<Button.InputBindings>
|
||||
<MouseBinding Command="{Binding OpenConversationPopupCommand}" Gesture="LeftClick" />
|
||||
@@ -52,7 +52,7 @@
|
||||
MouseRightButtonUp="btnOpenAi5_MouseRightButtonUp"
|
||||
ToolTipService.ShowOnDisabled="True">
|
||||
<Button.ToolTip>
|
||||
<TextBlock Text="{Binding TooltipName, StringFormat='{}{0} mit Prompt-Baustein starten'}" />
|
||||
<TextBlock Text="{Binding TooltipName, StringFormat='KI Chat über {}{0} per Prompt-Aktion starten'}" />
|
||||
</Button.ToolTip>
|
||||
<!--<Button.InputBindings>
|
||||
<MouseBinding Command="{Binding OpenAllPromptsPopupCommand}" Gesture="LeftClick" />
|
||||
|
||||
@@ -107,10 +107,10 @@ namespace BeWo.ViewModel.Controls.AI
|
||||
TooltipName = "KI Zeiterfassung";
|
||||
break;
|
||||
case AiActionType.ServiceRecordConversation:
|
||||
TooltipName = "KI Chat";
|
||||
TooltipName = "Zeiterfassung";
|
||||
break;
|
||||
case AiActionType.ServiceRecordDocumentation:
|
||||
TooltipName = "KI Doku";
|
||||
TooltipName = "Dokumentationstext";
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user