我正在ResourceDictionary
单独创建一个文件并从文件中调用它App.xaml
。
现在在我的Window
,我正在创建朗姆酒时间的树形视图。我允许用户在运行时添加孩子。
if (strParName == "-1")
{
treeViewLocation.Items.Clear();
_nLastAddedNodeID = 0;
_rootTreeViewItem = newNode;
strctLocationNode.ParentTreeNode = null;
treeViewLocation.Items.Add(newNode);
}
else
{
if (localTreeNodeCollection.ContainsKey(strParName))
{
parentLocNode = localTreeNodeCollection[strParName];
parentLocNode.CurrentTreeNode.Focus();
parentLocNode.CurrentTreeNode.Items.Add(newNode);
}
}
当我不应用时Style
,它工作正常。但是当我应用Style
我的代码崩溃时:
parentLocNode.CurrentTreeNode.Focus();
请建议我该怎么办?