s:ScatterView ItemTemplate - 如何设置高度或宽度?

发布于 2024-08-02 05:20:12 字数 912 浏览 8 评论 0原文

我在开发 Surface 软件时遇到一个小问题:我有一个绑定的 ScatterView,它的项目有一个 DataTemplate。我的问题是:如何设置从 ItemTemplate 创建的 ScatterViewItem 的宽度和高度?

      <s:ScatterView Name="svMain" Loaded="svMain_Loaded" ItemsSource="{Binding BallsCollection}" >
        <s:ScatterView.ItemTemplate >
            <DataTemplate>
                <DockPanel LastChildFill="True" >
                    <DockPanel.Background>
                        <ImageBrush ImageSource="image\note.png" Stretch="Fill" />
                    </DockPanel.Background>
                    <TextBox Background="Transparent" DockPanel.Dock="Top" Text="{Binding Path=Message}"
                             IsReadOnly="True" TextWrapping="Wrap"></TextBox>
                </DockPanel>
            </DataTemplate>
        </s:ScatterView.ItemTemplate>
    </s:ScatterView>

I have a small problem while working on software for a Surface: I have a binded ScatterView and its items have a DataTemplate. My question is : how do I set the width and height of the ScatterViewItem that it is created from the ItemTemplate?

      <s:ScatterView Name="svMain" Loaded="svMain_Loaded" ItemsSource="{Binding BallsCollection}" >
        <s:ScatterView.ItemTemplate >
            <DataTemplate>
                <DockPanel LastChildFill="True" >
                    <DockPanel.Background>
                        <ImageBrush ImageSource="image\note.png" Stretch="Fill" />
                    </DockPanel.Background>
                    <TextBox Background="Transparent" DockPanel.Dock="Top" Text="{Binding Path=Message}"
                             IsReadOnly="True" TextWrapping="Wrap"></TextBox>
                </DockPanel>
            </DataTemplate>
        </s:ScatterView.ItemTemplate>
    </s:ScatterView>

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

痴梦一场 2024-08-09 05:20:12

我相信您可以通过 ItemContainerStyle 进行设置,就像使用其他 ItemsControls 一样,但我不确定,因为我没有 Surface SDK。

    <s:ScatterView.ItemContainerStyle>
        <Style TargetType="{x:Type s:ScatterViewItem}">
            <Setter Property="Width" Value="100"/>
            <Setter Property="Height" Value="100"/>
        </Style>            
    </s:ScatterView.ItemContainerStyle>

当然,您也可以使用绑定来代替固定单位。

I believe you can set that through the ItemContainerStyle, like with other ItemsControls, but i'm not certain, as i do not have the Surface SDK.

    <s:ScatterView.ItemContainerStyle>
        <Style TargetType="{x:Type s:ScatterViewItem}">
            <Setter Property="Width" Value="100"/>
            <Setter Property="Height" Value="100"/>
        </Style>            
    </s:ScatterView.ItemContainerStyle>

You can of course also use bindings instead fixed units.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文