- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
此问题是 this 的后续问题问题。我现在的总体目标是根据输入的值按数字升序添加到我的程序的 TreeViewItem
(我的 TreeViewItem
有子节点在运行时添加到它)在 header
中。
我收到了一个使用 ModelView
的答案,这是一个我不太熟悉的工具,我还被告知这可以通过使用 List
来完成TreeViewItems
。由于我缺乏使用 ModelView
的经验,我决定探索 List
选项。
在我的研究中,我了解到 TreeViewItems
的 Lists
有点不同,因为您不能像引用 array< 那样引用它们
。这使他们更难一起工作。我将解释我当前的方法并发布我的代码。请引导我朝着正确的方向前进,并提供编码解决方案的答案。我目前卡在我的 treeViewListAdd
函数上。我在评论中写了伪代码,说明我想对该区域做什么。
*注意:我正在从一个单独的窗口添加到我的 TreeViewItem
现在我的添加 TreeViewItem
过程包括:
如果
不是数字,break
操作(DONE)else
-- 继续添加子项(完成)if
发现重复break
操作(DONE)else
-- 继续(完成)TreeViewItem
的 List
(完成 -- 但未实现)TreeViewItem
(完成)header
由 textBox
中的用户文本设置 (DONE)List
的函数 (问题区域)List
添加到
TreeViewItem
我当前的代码:
//OKAY - Add child to TreeViewItem in Main Window
private void button2_Click(object sender, RoutedEventArgs e)
{
//STEP 1: Checks to see if entered text is a numerical value
string Str = textBox1.Text.Trim();
double Num;
bool isNum = double.TryParse(Str, out Num);
//STEP 2: If not numerical value, warn user
if (isNum == false)
MessageBox.Show("Value must be Numerical");
else //STEP 3: else, continue
{
//close window
this.Close();
//Query for Window1
var mainWindow = Application.Current.Windows
.Cast<Window1>()
.FirstOrDefault(window => window is Window1) as Window1;
//STEP 4: Check for duplicate
//declare TreeViewItem from mainWindow
TreeViewItem locations = mainWindow.TreeViewItem;
//Passes to function -- checks for DUPLICATE locations
CheckForDuplicate(locations.Items, textBox1.Text);
//STEP 5: if Duplicate exists -- warn user
if (isDuplicate == true)
MessageBox.Show("Sorry, the number you entered is a duplicate of a current Node, please try again.");
else //STEP 6: else -- create child node
{
//STEP 7
List<TreeViewItem> treeViewList = new List<TreeViewItem>();
//STEP 8: Creates child TreeViewItem for TVI in main window
TreeViewItem newLocation = new TreeViewItem();
//STEP 9: Sets Headers for new child nodes
newLocation.Header = textBox1.Text;
//STEP 10: Pass to function -- adds/sorts List in numerical ascending order
treeViewListAdd(ref treeViewList, newLocation);
//STEP 11: Add children to TVI in main window
//This step will of course need to be changed to add the list
//instead of just the child node
mainWindow.TreeViewItem.Items.Add(newLocation);
}
}
}
//STEP 4: Checks to see whether the header entered is a DUPLICATE
private void CheckForDuplicate(ItemCollection treeViewItems, string input)
{
for (int index = 0; index < treeViewItems.Count; index++)
{
TreeViewItem item = (TreeViewItem)treeViewItems[index];
string header = item.Header.ToString();
if (header == input)
{
isDuplicate = true;
break;
}
else
isDuplicate = false;
}
}
//STEP 10: Adds to the TreeViewItem list in numerical ascending order
private void treeViewListAdd(ref List<TreeViewItem> currentList, TreeViewItem addLocation)
{
//if there are no TreeViewItems in the list, add the current one
if (currentList.Count() == 0)
currentList.Add(addLocation);
else
{
//gets the index of the last item in the List
int lastItem = currentList.Count() - 1;
/*
if (value in header > lastItem)
currentList.Add(addLocation);
else
{
//iterate through list and add TreeViewItem
//where appropriate
}
**/
}
}
非常感谢您的帮助。我试图表明我一直在努力解决这个问题,并尽我所能。
根据要求,这是我的 TreeView
的结构。从第 3 级及以下的所有内容都由用户动态添加...
最佳答案
好的。删除所有代码并重新开始。
1:在 WPF 中编写一行代码之前,您必须先阅读 MVVM。
<Window x:Class="MiscSamples.SortedTreeView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:cmp="clr-namespace:System.ComponentModel;assembly=WindowsBase"
Title="SortedTreeView" Height="300" Width="300">
<DockPanel>
<TextBox Text="{Binding NewValueString}" DockPanel.Dock="Top"/>
<Button Click="AddNewItem" DockPanel.Dock="Top" Content="Add"/>
<TreeView ItemsSource="{Binding ItemsView}" SelectedItemChanged="OnSelectedItemChanged">
<TreeView.ItemTemplate>
<HierarchicalDataTemplate ItemsSource="{Binding ItemsView}">
<TextBlock Text="{Binding Value}"/>
</HierarchicalDataTemplate>
</TreeView.ItemTemplate>
</TreeView>
</DockPanel>
</Window>
代码隐藏:
public partial class SortedTreeView : Window
{
public SortedTreeViewWindowViewModel ViewModel { get { return DataContext as SortedTreeViewWindowViewModel; } set { DataContext = value; } }
public SortedTreeView()
{
InitializeComponent();
ViewModel = new SortedTreeViewWindowViewModel()
{
Items = {new TreeViewModel(1)}
};
}
private void AddNewItem(object sender, RoutedEventArgs e)
{
ViewModel.AddNewItem();
}
//Added due to limitation of TreeViewItem described in http://stackoverflow.com/questions/1000040/selecteditem-in-a-wpf-treeview
private void OnSelectedItemChanged(object sender, RoutedPropertyChangedEventArgs<object> e)
{
ViewModel.SelectedItem = e.NewValue as TreeViewModel;
}
}
2:您在上面注意到的第一件事是代码隐藏什么都不做。它只是将功能委托(delegate)给称为 ViewModel 的东西(不是 ModelView,这是一个拼写错误)
Why is that?
因为这是一种更好的方法。时期。将应用程序逻辑/业务逻辑和数据从 UI 中分离和解耦对任何开发人员来说都是最好的事情。
So, What's the ViewModel about?
3: ViewModel 公开属性
,其中包含要在 View 中显示的数据,以及方法
包含操作数据的逻辑。
所以很简单:
public class SortedTreeViewWindowViewModel: PropertyChangedBase
{
private string _newValueString;
public int? NewValue { get; set; }
public string NewValueString
{
get { return _newValueString; }
set
{
_newValueString = value;
int integervalue;
//If the text is a valid numeric value, use that to create a new node.
if (int.TryParse(value, out integervalue))
NewValue = integervalue;
else
NewValue = null;
OnPropertyChanged("NewValueString");
}
}
public TreeViewModel SelectedItem { get; set; }
public ObservableCollection<TreeViewModel> Items { get; set; }
public ICollectionView ItemsView { get; set; }
public SortedTreeViewWindowViewModel()
{
Items = new ObservableCollection<TreeViewModel>();
ItemsView = new ListCollectionView(Items) {SortDescriptions = { new SortDescription("Value",ListSortDirection.Ascending)}};
}
public void AddNewItem()
{
ObservableCollection<TreeViewModel> targetcollection;
//Insert the New Node as a Root node if nothing is selected.
targetcollection = SelectedItem == null ? Items : SelectedItem.Items;
if (NewValue != null && !targetcollection.Any(x => x.Value == NewValue))
{
targetcollection.Add(new TreeViewModel(NewValue.Value));
NewValueString = string.Empty;
}
}
}
看到了吗? AddNewItem()
方法中的 5 行代码满足了所有 11 项要求。没有 Header.ToString()
东西,没有转换任何东西,没有可怕的代码隐藏方法。
只是简单、简单的属性和 INotifyPropertyChanged
。
And what about the sorting?
4:排序由 CollectionView
执行,它发生在 ViewModel 级别,而不是 View 级别。
Why?
因为数据与其在 UI 中的可视化表示是分开的。
5:最后,这是实际的数据项:
public class TreeViewModel: PropertyChangedBase
{
public int Value { get; set; }
public ObservableCollection<TreeViewModel> Items { get; set; }
public CollectionView ItemsView { get; set; }
public TreeViewModel(int value)
{
Items = new ObservableCollection<TreeViewModel>();
ItemsView = new ListCollectionView(Items)
{
SortDescriptions =
{
new SortDescription("Value",ListSortDirection.Ascending)
}
};
Value = value;
}
}
这是将保存数据的类,在本例中为 int
值,因为您只关心数字,所以这是正确的数据类型,然后是 ObservableCollection
将保存子节点,CollectionView
负责排序。
6: 每当您在 WPF 中使用 DataBinding(这对所有 MVVM 事物都是必不可少的)时,您需要实现 INotifyPropertyChanged
,因此这就是 PropertyChangedBase
类所有 ViewModels 继承自:
public class PropertyChangedBase:INotifyPropertyChanged
{
public event PropertyChangedEventHandler PropertyChanged;
protected virtual void OnPropertyChanged(string propertyName)
{
Application.Current.Dispatcher.BeginInvoke((Action) (() =>
{
PropertyChangedEventHandler handler = PropertyChanged;
if (handler != null) handler(this, new PropertyChangedEventArgs(propertyName));
}));
}
}
只要属性发生变化,您就需要通过以下方式通知:
OnPropertyChanged("PropertyName");
如在
OnPropertyChanged("NewValueString");
这是结果:
只需将我的所有代码复制并粘贴到 File -> New Project -> WPF Application
中,然后亲自查看结果。
如果您需要我澄清任何事情,请告诉我。
关于c# - 在 C# 中对 TreeViewItems 列表进行数字排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17949777/
fiddle :http://jsfiddle.net/rtucgv74/ 我正在尝试将第一个字符与 3 位数字匹配。所以下面的代码应该提醒f234。但反而返回 null ? 源代码: var reg
复制代码 代码如下: Dim strOk,strNo strOk = "12312321$12
我想找 {a number} / { a number } / {a string}模式。我可以得到number / number工作,但是当我添加 / string它不是。 我试图找到的例子: 15
我,我正在做一个模式正则表达式来检查字符串是否是: 数字.数字.数字,如下所示: 1.1.1 0.20.2 58.55541.5221 在java中我使用这个: private static Patt
我有一个字符串,我需要检查它是否在字符串的末尾包含一个数字/数字,并且需要将该数字/数字递增到字符串末尾 +1 我会得到下面的字符串 string2 = suppose_name_1 string3
我正在寻找一个正则表达式 (数字/数字),如(1/2) 数字必须是 1-3 位数字。我使用 Java。 我认为我的问题比正则表达式更深。我无法让这个工作 String s ="(1/15)";
谁能帮我理解为什么我在使用以下代码时会出现类型错误: function sumOfTwoNumbersInArray(a: [number, number]) { return a[0] +
我看到有些人过去也遇到过类似的问题,但他们似乎只是不同,所以解决方案也有所不同。所以这里是: 我正在尝试在 Google Apps 脚本中返回工作表的已知尺寸范围,如下所示: var myRange
我试图了解python中的正则表达式模块。我试图让我的程序从用户输入的一行文本中匹配以下模式: 8-13 之间的数字“/” 0-15 之间的数字 例如:8/2、11/13、10/9 等。 我想出的模式
简单地说,我当前正在开发的程序要求我拆分扫描仪输入(例如:2 个火腿和奶酪 5.5)。它应该读取杂货订单并将其分成三个数组。我应该使用 string.split 并能够将此输入分成三部分,而不管中间字
(number) & (-number) 是什么意思?我已经搜索过了,但无法找到含义 我想在 for 循环中使用 i & (-i),例如: for (i = 0; i 110000 .对于i没有高于
需要将图像ID设置为数字 var number = $(this).attr('rel'); number = parseInt(number); $('#carousel .slid
我有一个函数,我想确保它接受一个字符串,后跟一个数字。并且可选地,更多的字符串数字对。就像一个元组,但“无限”次: const fn = (...args: [string, number] | [s
我想复制“可用”输入数字的更改并将其添加或减去到“总计”中 如果此人将“可用”更改为“3”,则“总计”将变为“9”。 如果用户将“可用”更改为“5”,则“总计”将变为“11”。 $('#id1').b
我有一个与 R 中的断线相关的简单问题。 我正在尝试粘贴,但在获取(字符/数字)之间的断线时遇到问题。请注意,这些值包含在向量中(V1=81,V2=55,V3=25)我已经尝试过这段代码: cat(p
很难说出这里问的是什么。这个问题是含糊的、模糊的、不完整的、过于宽泛的或修辞性的,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开它,visit the help center 。 已关
我在 Typescript 中收到以下错误: Argument of type 'number[]' is not assignable to parameter of type 'number' 我
在本教程中,您将通过示例了解JavaScript 数字。 在JavaScript中,数字是基本数据类型。例如, const a = 3; const b = 3.13; 与其他一些编程语言不同
我在 MDN Reintroduction to JavaScript 上阅读JavaScript 数字只是浮点精度类型,JavaScript 中没有整数。然而 JavaScript 有两个函数,pa
我们在 Excel 中管理库存。我知道这有点过时,但我们正在发展商业公司,我们所有的钱都被困在业务上,没有钱投资 IT。 所以我想知道我可以用Excel自动完成产品编号的方式进行编程吗? 这是一个产品
我是一名优秀的程序员,十分优秀!