当前位置:网站首页>uwp ScrollViewer content out of panel when set the long width
uwp ScrollViewer content out of panel when set the long width
2022-08-04 19:56:00 【林德熙】
I find a ununderstandable behavior in UWP. I make a content with a long width in ScrollViewer and the content will out of the panel.
I write a xaml with a ScrollViewer and a Grid. And than I set a content to ScrollViewer and the content is a long width Grid.
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<ScrollViewer HorizontalScrollBarVisibility="Visible">
<Grid Width="2100000">
<TextBlock Margin="10,10,10,10"
Text="asdasdasdasdasdasdasdasdasdaasdasdasdasdasdasdasdasdasdasdasdasdasdasdaasdasdasdasdasdasdasdasdasdasdasdasdasdasdaasdasdasdasdasdasdasdasdasdasdasdasdasd" />
</Grid>
</ScrollViewer>
<Grid Grid.Column="1" Background="#aa565656" />
</Grid>Running the code, and the TextBlock will out of the Grid.
After I set the Grid width to 2000000 that work well.
Do not ask why I can find it. I wrote a code await "lindexi is doubi"; and my friend pressed my head to the Keyboard. My head pressed the 0 key and set the Grid width. I ran the code and I was surprised to see it.
Code https://github.com/lindexi/lindexi_gd/tree/550373c7ee587980a7ecd56e2c03aa40c6972416/TucasurchasGeldiskaycasoohou
边栏推荐
猜你喜欢
随机推荐
带你了解数据分布式存储原理
[Sql brush topic] Query information data--Day1
二叉树是否对称
Embrace the Cmake child is simple and practical, but inflexible
jMeter Thread group 对应的 constant timer
运维就业现状怎么样?技能要求高吗?
基于HDF的LED驱动程序开发(2)
02 ts 变量定义,类型
对比几类主流的跨端技术方案
致-.-- -..- -
刷题-洛谷-P1179 数字统计
PriorityQueue类的使用及底层原理
华为企业组网实例:VRRP+MSTP典型组网配置
ERC20转账压缩
微信小程序云开发 | 赠、删、改城市名称信息的应用实现
zynq 记录
nr部分计算
Polygon zkEVM 基本概念
高效目标检测:动态候选较大程度提升检测精度(附论文下载)
LED的C语言应用程序









