-
Notifications
You must be signed in to change notification settings - Fork 0
/
RichEditWindow.xaml
32 lines (32 loc) · 1.34 KB
/
RichEditWindow.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<Window x:Class="WPF_AI_Extensions.RichEditWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:WPF_AI_Extensions"
xmlns:dxmvvm="http://schemas.devexpress.com/winfx/2008/xaml/mvvm"
xmlns:dxre="http://schemas.devexpress.com/winfx/2008/xaml/richedit"
xmlns:dxai="http://schemas.devexpress.com/winfx/2008/xaml/ai"
mc:Ignorable="d"
Title="RichEditWindow" Height="450" Width="800">
<Grid>
<dxre:RichEditControl x:Name="richEditControl" CommandBarStyle="Ribbon">
<dxmvvm:Interaction.Behaviors>
<dxai:ExpandBehavior />
<dxai:ShortenBehavior/>
<dxai:SummarizeBehavior/>
<dxai:ExplainBehavior/>
<dxai:ChangeToneBehavior />
<dxai:ProofreadBehavior/>
<dxai:ChangeStyleBehavior/>
<dxai:TranslateBehavior>
<dxai:LanguageInfo Culture="en-US"/>
<dxai:LanguageInfo Culture="de-DE"/>
<dxai:LanguageInfo Culture="fr-FR"/>
</dxai:TranslateBehavior>
<dxai:GenerateImageDescriptionBehavior/>
<dxai:CustomRequestBehavior/>
</dxmvvm:Interaction.Behaviors>
</dxre:RichEditControl>
</Grid>
</Window>