ControlTemplate 内容未调整大小

发布于 2025-01-11 17:56:08 字数 1682 浏览 0 评论 0原文

我试图在我的页面上实现一个模板化视图,该视图显示标准页眉和页脚,其中我的内容位于中间。为了实现这一目标,我决定使用 ControlTemplate 并在每个页面上引用它。

在我的资源字典中,我有以下内容:

<ControlTemplate x:Key="MoneyTemplate">

        <Grid
            VerticalOptions="FillAndExpand"
            BackgroundColor="{DynamicResource BackgroundColor}"
            Padding="25">

            <Grid.RowDefinitions>
                <RowDefinition Height="100" />
                <RowDefinition Height="*" />
                <RowDefinition Height="auto" />
            </Grid.RowDefinitions>

            <Image 
                Grid.Row="0"
                Source="buddy.png" />

<tabView:SfTabView
Grid.Row="1"
                VerticalOptions="CenterAndExpand"
                TabBarPlacement="Bottom">
                <tabView:SfTabItem Header="Overview" TextColor="Black">
            <ContentPresenter  />
                </tabView:SfTabItem>
                <tabView:SfTabItem Header="Scheduler">
                    <Label Text="Hello world" />
                </tabView:SfTabItem>
            </tabView:SfTabView>

            
            <Label
                Grid.Row="2"
                Text="Hello" />
        </Grid>

    </ControlTemplate>

在我的页面上实现:

<ContentView 
        VerticalOptions="Fill"
        ControlTemplate="{StaticResource MoneyTemplate}">PAGE CONTENT GOES HERE</ContentView>

当我在 Windows 应用程序中实现此功能并调整窗口大小时,控件不会更新,但是如果我停止使用 ControlTemplate 并将此 xaml 直接粘贴到页面中一切都正确呈现。

我意识到 MAUI 仍处于预览阶段,但我不确定问题是否在于我编写模板的方式以及我的理解是否有误,或者这是否是 MAUI 中的错误。

I am trying to achieve a templated view on my pages which displays a standard header and footer where my content goes in the middle. To achieve this I decided to use a ControlTemplate and reference this on each page.

In my resource dictionary I have the following:

<ControlTemplate x:Key="MoneyTemplate">

        <Grid
            VerticalOptions="FillAndExpand"
            BackgroundColor="{DynamicResource BackgroundColor}"
            Padding="25">

            <Grid.RowDefinitions>
                <RowDefinition Height="100" />
                <RowDefinition Height="*" />
                <RowDefinition Height="auto" />
            </Grid.RowDefinitions>

            <Image 
                Grid.Row="0"
                Source="buddy.png" />

<tabView:SfTabView
Grid.Row="1"
                VerticalOptions="CenterAndExpand"
                TabBarPlacement="Bottom">
                <tabView:SfTabItem Header="Overview" TextColor="Black">
            <ContentPresenter  />
                </tabView:SfTabItem>
                <tabView:SfTabItem Header="Scheduler">
                    <Label Text="Hello world" />
                </tabView:SfTabItem>
            </tabView:SfTabView>

            
            <Label
                Grid.Row="2"
                Text="Hello" />
        </Grid>

    </ControlTemplate>

And on my pages I implement with:

<ContentView 
        VerticalOptions="Fill"
        ControlTemplate="{StaticResource MoneyTemplate}">PAGE CONTENT GOES HERE</ContentView>

When I implement this in a Windows application and resize my window the control does not update, however if I stop using a ControlTemplate and paste this xaml directly into the page everything renders correctly.

I realise that MAUI is still in preview but I'm unsure of whether the problem is the way I've written the template and whether my understanding is off or whether this is a bug within MAUI.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文