mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-05 09:10:52 +08:00
67 lines
3.1 KiB
XML
67 lines
3.1 KiB
XML
<fluent:RibbonWindow x:Class="FluentTest.RibbonWindowWithBackgroundImage"
|
|
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:fluent="urn:fluent-ribbon"
|
|
xmlns:converters="clr-namespace:FluentTest.Converters"
|
|
mc:Ignorable="d"
|
|
Title="RibbonWindowWithBackgroundImage"
|
|
Height="600"
|
|
Width="800"
|
|
TitleForeground="Black"
|
|
TitleBackground="Transparent">
|
|
<fluent:RibbonWindow.Resources>
|
|
<converters:BackgroundImageViewportConverter x:Key="BackgroundImageViewportConverter" />
|
|
|
|
<SolidColorBrush x:Key="Fluent.Ribbon.Brushes.RibbonTabControl.Background" Color="Transparent" />
|
|
<SolidColorBrush x:Key="Fluent.Ribbon.Brushes.RibbonTabControl.Foreground" Color="Black" />
|
|
|
|
<SolidColorBrush x:Key="Fluent.Ribbon.Brushes.RibbonTabControl.Content.Background" Color="{DynamicResource WhiteColor}" />
|
|
<SolidColorBrush x:Key="Fluent.Ribbon.Brushes.RibbonTabControl.Content.Foreground" Color="Black" />
|
|
<SolidColorBrush x:Key="Fluent.Ribbon.Brushes.WindowCommands.CaptionButton.Foreground" Color="Black" />
|
|
</fluent:RibbonWindow.Resources>
|
|
|
|
<Window.Background>
|
|
<ImageBrush ImageSource="pack://application:,,,/Fluent.Ribbon.Showcase;component/Images/banner.png"
|
|
Stretch="Fill"
|
|
Viewport="{Binding ActualWidth, RelativeSource={RelativeSource AncestorType=Window}, Converter={StaticResource BackgroundImageViewportConverter}}"
|
|
ViewportUnits="Absolute"
|
|
TileMode="None"
|
|
AlignmentX="Right"
|
|
AlignmentY="Top" />
|
|
</Window.Background>
|
|
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="*" />
|
|
</Grid.RowDefinitions>
|
|
|
|
<fluent:Ribbon Background="Transparent">
|
|
<fluent:Ribbon.Menu>
|
|
<fluent:Backstage />
|
|
</fluent:Ribbon.Menu>
|
|
|
|
<fluent:RibbonTabItem Header="First">
|
|
<fluent:RibbonGroupBox Header="First">
|
|
<fluent:Button Header="First" />
|
|
</fluent:RibbonGroupBox>
|
|
</fluent:RibbonTabItem>
|
|
|
|
<fluent:RibbonTabItem Header="Second">
|
|
<fluent:RibbonGroupBox Header="Second">
|
|
<fluent:Button Header="Second" />
|
|
</fluent:RibbonGroupBox>
|
|
</fluent:RibbonTabItem>
|
|
</fluent:Ribbon>
|
|
|
|
<Grid Background="{DynamicResource WhiteBrush}"
|
|
Grid.Row="1">
|
|
<TextBlock TextWrapping="Wrap"
|
|
Margin="5">
|
|
This sample shows how to use a background image for the titlebar.
|
|
</TextBlock>
|
|
</Grid>
|
|
</Grid>
|
|
</fluent:RibbonWindow> |