StackPanelに動的にTextBlockを追加するため
ViewModel側でStackPanelを保持したいです。
コードビハインドでは「spanel.Children.Add(textBlock);」のように書くことができますが、
MVVMのViewModelで記載するにはどのようにすれば良いのでしょうか。
(DataContextにバインディングしようとしましたが、できていない気がします。)
イメージは下記のコードのLabelのように
ViewwModel側はプロパティで状態を保持し、変更がある度、
更新されるようにしたいです。
よろしくお願いします。
■View側
C#
1<Window x:Class="Test1.MainWindow" 2 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 3 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 4 xmlns:vm="clr-namespace:Test1" 5 Title="MainWindow" Height="350" Width="525"> 6 <Window.DataContext> 7 <vm:Test1ViewModel /> 8 </Window.DataContext> 9 <Grid> 10 <StackPanel 11 DataContext="{Binding TestStackPanel}"/> 12 <Label 13 Content="{Binding TestLabel}" HorizontalAlignment="Left" VerticalAlignment="Top"/> 14 </Grid> 15</Window>
■ViewModel側
C#
1using System; 2using System.Collections.Generic; 3using System.Linq; 4using System.Text; 5using System.Threading.Tasks; 6using System.Windows.Controls; 7using System.Windows.Documents; 8using System.Windows.Media; 9 10namespace Test1 11{ 12 class Test1ViewModel : ViewModelBase 13 { 14 /// <summary> 15 /// コンストラクタ 16 /// </summary> 17 public Test1ViewModel() 18 { 19 ShowList(); 20 } 21 22 private string _testLabel = "初期値"; 23 public string TestLabel 24 { 25 get { return _testLabel; } 26 set 27 { 28 if (value == _testLabel) 29 { 30 return; 31 } 32 } 33 } 34 35 private StackPanel _testStackPanel = new StackPanel(); 36 public StackPanel TestStackPanel 37 { 38 get { return _testStackPanel; } 39 set 40 { 41 if (value == _testStackPanel) 42 { 43 return; 44 } 45 } 46 } 47 48 49 private List<string> _itemList = new List<string>(); 50 private void ShowList() 51 { 52 _itemList.Add("テスト1"); 53 _itemList.Add("テスト2"); 54 _itemList.Add("テスト3"); 55 56 foreach (var item in _itemList) 57 { 58 // TextBlockのInlinesプロパティにRunを入れ込む 59 var txtblock = new TextBlock(); 60 61 txtblock.Inlines.Add(new Run 62 { 63 Text = item, 64 Foreground = new SolidColorBrush(Colors.Red) 65 }); 66 67 // ここで動的に作成したTextBlockを追加したい 68 // コードビハインドでは「spanel.Children.Add(textBlock); 」のように書ける 69 TestStackPanel.Children.Add(txtblock); 70 } 71 } 72 73 } 74}
(ViewModelBase)
using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Runtime.CompilerServices; using System.Text; using System.Threading.Tasks; namespace Test1 { public abstract class ViewModelBase : INotifyPropertyChanged { public event PropertyChangedEventHandler PropertyChanged; protected bool SetProperty<T>(ref T storage, T value, [CallerMemberName] string propertyName = null) { if (Equals(storage, value)) return false; storage = value; return true; } } }
回答1件
あなたの回答
tips
プレビュー