我知道有一些问题有相同的标题线,但我找不到任何答案,为我工作。
在Xml文件三重ListBox,这是建立从3内部Observable集合。(列表的寄存器,其中包含列表的字段,其中包含列表的int)。
Xaml:
<ScrollViewer HorizontalScrollBarVisibility="Auto">
<Grid HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
<Grid.RowDefinitions>
<RowDefinition Height="60"/>
<RowDefinition Height="*"/>
<RowDefinition MaxHeight="50"/>
</Grid.RowDefinitions>
<ListBox x:Name="RegistersListView" ItemsSource="{x:Bind registersList}" Grid.Row="1">
<ListBox.ItemTemplate>
<DataTemplate x:DataType="structures:Register">
<Grid>
<Grid.RowDefinitions>
<RowDefinition/>
<RowDefinition/>
</Grid.RowDefinitions>
<TextBlock Text="{x:Bind name}" Grid.Row="0" />
<ListBox x:Name="FieldsListView" ItemsSource="{x:Bind reg_fields}" Grid.Row="1">
<ListBox.ItemTemplate>
<DataTemplate x:DataType="structures:Field">
<StackPanel>
<TextBlock Text="{x:Bind name}"/>
<ListBox x:Name="BitsListView" ItemsSource="{x:Bind bitsList}">
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel Orientation="Horizontal"/>
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
</ListBox>
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel Orientation="Horizontal" />
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
</ListBox>
</Grid>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
</Grid>
</ScrollViewer>
但是当我的数据超过60个寄存器时,我会得到这样的消息:
检测到布局循环。布局无法完成。检测到布局循环。布局无法完成。
不知道它是关于什么的。调试器也没有任何信息。
我几乎可以肯定它与ScrollViewer有关,因为当它被删除时,没有例外。但我需要这个ScrollViewer,所以任何关于ScrollViewer的想法也很受欢迎。谢谢。
编辑:
这些类是:
public class Field : INotifyPropertyChanged
{
public string name;
public int offset;
public int length;
public string description;
private UInt64 _value;
private ObservableCollection<int> bitsList = new ObservableCollection<int>();
public ObservableCollection<int> BitsList
{
get
{
return new ObservableCollection<int>(bitsList);
}
set
{
//todo
}
}
public event PropertyChangedEventHandler PropertyChanged;
public void OnPropertyChanged(string propertyName)
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}
public Field(string _name)
{
name = _name;
}
override public string ToString()
{
return name;
}
public void Value(UInt64 value)
{
_value = value;
#pragma warning disable CS4014
Windows.ApplicationModel.Core.CoreApplication.MainView.CoreWindow.Dispatcher.RunAsync(CoreDispatcherPriority.Normal, () =>
{
for (int i = 0; i < length; i++)
{
bitsList.Add(Convert.ToInt32(value & 1));
value = value >> 1;
}
OnPropertyChanged("BitsList");
});
#pragma warning restore CS4014
}
}
public class Register
{
public string name;
public UInt64 _deafult_value;
public UInt64 value;
public int offset;
public int index;
public string description;
public int register_size;
public ObservableCollection<Field> reg_fields = new ObservableCollection<Field>();
public Register(string _name)
{
name = _name;
}
}
填写寄存器列表过于复杂,无法在此添加,但为了简化:
public ObservableCollection<Register> registersList = new ObservableCollection<Register>();
private void InnerDataCreator()
{
Instances instances = new Instances();
registersList = instances.PopulateRegistersData();
}
public ObservableCollection<Register> PopulateRegistersData()
{
const int REG_AMOUNT = 100;
const int REG_SIZE = 32;
ObservableCollection<Register> registers = new ObservableCollection<Register>();
for (int regIndex = 0; regIndex < REG_AMOUNT; regIndex++)
{
Register register = new Register("reg_" + regIndex.ToString());
register.description = "register description _***_ " + regIndex.ToString();
register.register_size = REG_SIZE;
ObservableCollection<Field> fields = new ObservableCollection<Field>();
int offset = 0;
/* 4 fields in each register */
for (int fieldNum = 0; fieldNum < 4; fieldNum++)
{
string fieldName;
if(regIndex < REG_AMOUNT / 2)
{
fieldName = "reg_" + regIndex.ToString() + " Field_" + fieldNum.ToString();
}
else
{
fieldName = "################ reg_" + regIndex.ToString() + " Field_" + fieldNum.ToString() + "###################";
}
Field field = new Field(fieldName);
field.description = "field description. reg: " + regIndex.ToString() + ". field: " + fieldNum.ToString();
field.length = 8;
field.offset = offset;
field.Value(BitConverter.GetBytes(170)[0]); /* 10101010 */
register.reg_fields.Add(field);
offset += field.length;
}
registers.Add(register);
}
return registers;
}
}
2条答案
按热度按时间lfapxunr1#
我通过
foreach
循环填充了几个StackLayout
,它们都包含在一个固定高度的ScrollViewer
中。当内容太大时,它开始崩溃,出现模糊的“检测到布局周期”错误。
我把
StackLayout
s改成了Grid
s,终于解决了这个极其烦人的问题。更新:1年后我的应用程序再次遇到这个问题。我通过向有问题的网格视图添加一个
VerticalAlignment
属性来修复它...更新2:4年后,这个问题又出现了,在同一个项目中......原来这是一个微软的错误,影响任何列表视图有点太大的东西。看这里:https://github.com/microsoft/microsoft-ui-xaml/issues/6218 .解决方案?更新框架...但即使这样,它也不能100%解决。
h4cxqtbf2#
我使用了ListBox内置的ScrollViewer而不是ScrollViewer布局,它似乎修复了这个bug。
对于超过50个对象,性能仍然不好,但这比exception好。当使用ListView而不是ListBox时,性能更好,但内置的ScrollViewer不会显示。所以我不会将此答案标记为可接受。
列表视图版本: