56 lines
2.5 KiB
XML
56 lines
2.5 KiB
XML
<UserControl
|
|
x:Class="BeWo.View.Controls.AI.AiPromptbausteinButton"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:ai="clr-namespace:BeWo.View.Detail.AI"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:draw="clr-namespace:System.Drawing;assembly=System.Drawing"
|
|
xmlns:local="clr-namespace:BeWo.View.Controls.AI"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
x:Name="root"
|
|
mc:Ignorable="d">
|
|
<Grid>
|
|
<StackPanel
|
|
Margin="0"
|
|
VerticalAlignment="Center"
|
|
Orientation="Horizontal">
|
|
<StackPanel.Resources>
|
|
<ResourceDictionary>
|
|
<ResourceDictionary.MergedDictionaries>
|
|
<ResourceDictionary Source="..\..\..\Styles\ModernOrangeBlack.xaml" />
|
|
</ResourceDictionary.MergedDictionaries>
|
|
</ResourceDictionary>
|
|
</StackPanel.Resources>
|
|
<Button
|
|
x:Name="btnOpenAi5"
|
|
Margin="0"
|
|
Click="btnOpenAi5_Click"
|
|
Content="{StaticResource AiDesignsIconKIFunktionWeissGruen}"
|
|
MouseRightButtonUp="btnOpenAi5_MouseRightButtonUp"
|
|
Style="{StaticResource PrimaryButton}"
|
|
ToolTip="KI Chat mit Prompt-Baustein starten"
|
|
ToolTipService.ShowOnDisabled="True">
|
|
<!--<Button.InputBindings>
|
|
<MouseBinding Command="{Binding AiPromptOpenFavoriteCommand, ElementName=root}" Gesture="RightClick" />
|
|
<MouseBinding Command="{Binding AiPromptOpenAllCommand, ElementName=root}" Gesture="LeftClick" />
|
|
</Button.InputBindings>-->
|
|
</Button>
|
|
</StackPanel>
|
|
<!--<Popup
|
|
x:Name="popup_promptbaustein_all"
|
|
Width="600"
|
|
Height="400"
|
|
Placement="Top"
|
|
PlacementTarget="{Binding ElementName=btnOpenAi5}"
|
|
StaysOpen="False">
|
|
<Border x:Name="border_promptbaustein_al" BorderThickness="1" />
|
|
</Popup>-->
|
|
<Popup
|
|
x:Name="popup_promptbaustein_favoriten"
|
|
Placement="Top"
|
|
PlacementTarget="{Binding ElementName=btnOpenAi5}"
|
|
StaysOpen="False">
|
|
<Border x:Name="border_promptbaustein_favoriten" BorderThickness="1" />
|
|
</Popup>
|
|
</Grid>
|
|
</UserControl> |