前提・実現したいこと
C#でのMVVM初心者です。
MVVMフレームワークとして、Prismを利用しています。
Clickイベントの動作をViewModelで実現したいです。
ScrollIntoViewの実装方法が知りたいです。
よろしくお願いします。
発生している問題・エラーメッセージ
該当のソースコード
xaml
1<Window x:Class="WPFDataGrid.Views.MainWindow" 2 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 3 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 4 xmlns:prism="http://prismlibrary.com/" 5 prism:ViewModelLocator.AutoWireViewModel="True" 6 Title="{Binding Title}" Height="600" Width="800" > 7 <Grid> 8 <ContentControl prism:RegionManager.RegionName="ContentRegion" /> 9 <StackPanel 10 Orientation="Vertical"> 11 <DataGrid 12 Name="DataGrid1" 13 Height="450" 14 AutoGenerateColumns="True" 15 HorizontalScrollBarVisibility="Auto" 16 VerticalScrollBarVisibility="Auto" 17 IsReadOnly="True" 18 ItemsSource="{Binding Path=DataSource1.Value}"/> 19 <Button 20 Name="BtnTopLine" 21 Height="50" 22 Click="BtnTopLine_Click"> 23 先頭行へ 24 </Button> 25 <Button 26 Name="BtnLastLine" 27 Height="50" 28 Click="BtnLastLine_Click"> 29 最終行へ 30 </Button> 31 </StackPanel> 32 </Grid> 33</Window>
xamlcs
1using System.Data; 2using System.Windows; 3 4namespace WPFDataGrid.Views 5{ 6 /// <summary> 7 /// Interaction logic for MainWindow.xaml 8 /// </summary> 9 public partial class MainWindow : Window 10 { 11 public MainWindow() 12 { 13 InitializeComponent(); 14 } 15 16 private void BtnTopLine_Click(object sender, RoutedEventArgs e) 17 { 18 this.DataGrid1.Focus(); 19 // 先頭行へ移動 20 this.DataGrid1.ScrollIntoView(this.DataGrid1.Items[0]); 21 } 22 23 private void BtnLastLine_Click(object sender, RoutedEventArgs e) 24 { 25 this.DataGrid1.Focus(); 26 DataTable _dt = ((DataView)this.DataGrid1.ItemsSource).ToTable(); 27 // 最終行へ移動 28 this.DataGrid1.ScrollIntoView(this.DataGrid1.Items[_dt.Rows.Count - 1]); 29 } 30 } 31}
ViewModel
1using Prism.Mvvm; 2using Reactive.Bindings; 3using System.Data; 4 5namespace WPFDataGrid.ViewModels 6{ 7 public class MainWindowViewModel : BindableBase 8 { 9 private string _title = "Prism Application"; 10 public string Title 11 { 12 get { return _title; } 13 set { SetProperty(ref _title, value); } 14 } 15 16 public ReactiveProperty<DataTable> DataSource1 { set; get; } = 17 new ReactiveProperty<DataTable>(); 18 19 public MainWindowViewModel() 20 { 21 // データテーブル 22 int _columnCount = 100; 23 int _rowCount = 100; 24 DataTable _dt = new DataTable(); 25 // 列の生成 26 for (int _i = 0; _i < _columnCount; _i++) 27 { 28 _dt.Columns.Add("Column" + _i.ToString()); 29 } 30 // 行の追加 31 for (int _i = 0; _i < _rowCount; _i++) 32 { 33 DataRow _row = _dt.NewRow(); 34 for (int _k = 0; _k < _columnCount; _k++) 35 { 36 _row[_k] = $"{_i}-{_k}"; 37 } 38 _dt.Rows.Add(_row); 39 } 40 // データテーブルのバインド 41 DataSource1.Value = _dt; 42 } 43 } 44} 45
試したこと
補足情報(FW/ツールのバージョンなど)
Visual Studio Community 2019 ver.16.11.8
Prism.Unity ver.8.1.97
ReactiveProperty ver.8.0.3
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/12/24 06:51