0

我创建了一个新的Caliburn项目并添加了 System.Windows.Controls.Ribbon 命名空间。然后我使用了一个普通的 RibbonWindow:

XAML:

<Grid Background="White" HorizontalAlignment="Stretch" Height="auto" VerticalAlignment="Stretch" Width="auto" MinHeight="300" MinWidth="300">
    <Grid.ColumnDefinitions>
        <ColumnDefinition Width="40*"/>
        <ColumnDefinition Width="60*"/>
    </Grid.ColumnDefinitions>
    <Grid.RowDefinitions>
        <RowDefinition Height="142" MinHeight="142" MaxHeight="142"/>
        <RowDefinition Height="93*"/>
        <RowDefinition Height="7*"/>
    </Grid.RowDefinitions>
    <Ribbon x:Name="RibbonMenu" Grid.ColumnSpan="3" Height="auto" Background="RoyalBlue" SelectedIndex="1" Margin="0,0,0,0">
        <Ribbon.HelpPaneContent>
            <RibbonButton SmallImageSource="/Images/help.jpg"></RibbonButton>
        </Ribbon.HelpPaneContent>
        <RibbonTab x:Name="RTabStart" Header="Start">
            <RibbonGroup Header="Allgemeines">
                <!--<RibbonButton SmallImageSource="/Images/cog_go.png" LargeImageSource="/Images/cog_go.png" Label="Starte"/>-->
            </RibbonGroup>
        </RibbonTab>
    </Ribbon>
</Grid>

在设计视图中一切看起来都很好——但是当我运行我的项目时,标题栏是白色的并且“搞砸了”——我该如何解决这个问题?我认为 Caliburn 可能会干扰 - 但我之前已经建立了一个 Caliburn 项目,它看起来还不错。

4

0 回答 0