RibbonWindow显示错误

时间:2013-04-30 13:11:45

标签: c# wpf ribbon caliburn

我创建了一个新的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项目,它看起来还不错。

0 个答案:

没有答案