我是编程c#和XAML的新手,所以我尽力将问题描述得尽可能好。
问题:
现在问题已完成98%。当列表以正确的顺序显示时,我可以在列表中添加和删除项目。 (感谢所有在其他主题上写过答案的人。我经常遇到类似的问题)
问题:
要显示列表,我在XAML中使用Datagrid和Binding。 列表可能很长,以便查看我必须向下滚动的最后元素。 当我向下滚动并插入一个新项目时,该元素将插入列表的第一个元素之一,因此我必须向上滚动并找出它的插入位置(例如编辑它)。
我的问题: 可以自动跳转到新插入的行吗?
我从昨天开始搜索了很多东西,并尝试了一些我发现的东西,但我找不到解决办法。
我的XAML文件的片段:
<UserControl x:Class="UI.RightsConfigView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:cal="http://www.caliburnproject.org"
mc:Ignorable="d"
d:DesignHeight="500" d:DesignWidth="800"
xmlns:conv="clr-namespace:conv">
... Background setting ...
<Grid x:Name="myGrid">
<DataGrid x:Name="ParamGrid" Grid.Row="0" ItemsSource="{Binding Values}" SelectedValue="{Binding SelectedValue}" cal:Message.Attach="[Event MouseDoubleClick] = [Action MouseDoubleClicked]" AutoGenerateColumns="False" SelectionMode="Single" >
<DataGrid.ContextMenu>
<ContextMenu>
<MenuItem Header="New Value" cal:Message.Attach="CreateNewValue">
</MenuItem>
<MenuItem Header="Delete Value" cal:Message.Attach="DeleteValue">
</MenuItem>
</ContextMenu>
</DataGrid.ContextMenu>
... Tamplate ...
</DataGrid>
</Grid>
</UserControl>
类RightsConfigViewModel的片段如下所示:
public class RightsConfigViewModel : BaseTabModel, ICloseDetail
{
public ObservableCollection<ParameterValueModel> Values { get; set; }
private void GenerateDisplayList()
{
foreach (EEPROMParameter theItem in parameters)
{
... some cast etc. ...
ParameterValueModel theParameterModel = new ParameterValueModel(theItem, this, this);
Values.Add(theParameterModel);
}
...
this.NotifyOfPropertyChange(() => this.Values);
}
public void CreateNewValue()
{
// Insert at the right position
foreach (ParameterValueModel model in Values)
{
if (tempAddress != model.Parameter.Address)
{
foundFreeAddress = true;
modelToAddBefore = Values.IndexOf(model);
break;
}
}
....
Values.Add(newModel);
Values.Move(Values.IndexOf(newModel), modelToAddBefore);
this.NotifyOfPropertyChange(() => this.Values);
}
}
在代码隐藏中我想在方法中插入方法CreateNewValue()somithing like:
提前感谢您的帮助。
祝福。
Elvys
答案 0 :(得分:0)
您可以调用ScrollIntoView
的{{1}}方法,并将新添加的项目作为参数传递。在您的情况下,您要在ViewModel中向集合中添加新值,因此您需要通知UI该项目已添加到DataGrid
并将其滚动到视图中。
答案 1 :(得分:0)
我终于找到了解决问题的好方法:
基本上我使用了http://www.codeproject.com/Tips/125583/ScrollIntoView-for-a-DataGrid-when-using-MVVM中提出的解决方案,但进行了一些更改以使其有效(对我而言)。
复制c#-class就像它一样,我改变了
grid.Dispatcher.BeginInvoke( (Action)delegate ...
在我的viewModel的方法中,新的list元素被创建为new 创建的元素由SelectedValue
引用SelectedValue = newModel;
this.NotifyOfPropertyChange(() => this.SelectedValue);
这就是所有人!