我一直在尝试在示例中但在 Windows 手机中执行相同的表: http ://www.scottlogic.com/blog/2010/11/15/using-a-grid-as-the-panel-for -an-itemscontrol.html
我已经下载了项目,并且复制了每个类: -GridItemsControl -GridUtils -PhantomPanel 在此之后,我将这些类的命名空间更改为“project.Tables”
比我在 xaml 页面中声明的 xmlns:table="clr-namespace:project.Tables"
这样做之后一切都很好,除了带有线条的部分:
错误是:“无法识别或无法访问”你知道这个问题的解决方案吗?
这是来自 xaml 页面的示例代码:
<ScrollViewer VerticalScrollBarVisibility="Auto">
<ItemsControl table:GridUtils.ItemsSource="{Binding}"
VerticalAlignment="Top">
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<Grid table:GridUtils.ItemsPerRow="3">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="2*"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
</Grid>
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
<ItemsControl.ItemTemplate>
<DataTemplate>
<table:PhantomPanel>
<TextBlock Text="{Binding Path=Item}"/>
<TextBlock Text="{Binding Path=Quantity}" Grid.Column="1"/>
<Line Stroke="LightGray" StrokeThickness="1"
VerticalAlignment="Bottom"
X1="0" X2="1" Y1="0" Y2="0"
Stretch="Fill"
Grid.ColumnSpan="2"/>
</table:PhantomPanel>
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
</ScrollViewer>