C# 2重継承の回避方法が分かりません。
VS2019でLivetを使用して
MVVMを学習しています。
下記のサイトを参考に画面の切替をしたいと考えています。
C#のWPFで複数のテンプレートを切り替えて使う
サイトでは、「DataTemplateSelector」を継承し、
SelectTemplateをオーバーライドして使用しています。
同様のことをしたいのですが、
Livetを使用しているため、
すでに「ViewModel」を継承しており、
追加で「DataTemplateSelector」を継承しようとするとエラーになります。
【エラー内容】
複数の基底クラスを持つことができません
宜しくお願い致します。
気になる質問をクリップする
クリップした質問は、後からいつでもMYページで確認できます。
またクリップした質問に回答があった際、通知やメールを受け取ることができます。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/09/04 04:48
回答1件
0
DataTemplateSelector
は、ViewModel
が継承するようなものではありません(通常View
層に単体で存在します)
データ オブジェクトのプロパティに基づく DataTemplate の選択 - WPF | Microsoft Docs
作りがだいぶ違いますが、要は「入力値に対して適当なテンプレートを選択して返す」ってだけです(IValueConverter
なんかもそう)
方法: バインドされたデータを変換する - WPF | Microsoft Docs
参考サイトのものをLivet
で作るとすると、こんな感じでしょうか(namespace
ごとにまとめていますが、別ファイルです)
ついでに名前を大文字にするしょうもないコンバーター例(UppercaseConverter
)も入れました。
xml
1<Window 2 x:Class="Questions289487.Views.MainWindow" 3 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 4 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 5 xmlns:behaviors="http://schemas.microsoft.com/xaml/behaviors" 6 xmlns:l="http://schemas.livet-mvvm.net/2011/wpf" 7 xmlns:v="clr-namespace:Questions289487.Views" 8 xmlns:vm="clr-namespace:Questions289487.ViewModels" 9 Width="525" 10 Height="350"> 11 12 <Window.DataContext> 13 <vm:MainWindowViewModel /> 14 </Window.DataContext> 15 16 <behaviors:Interaction.Triggers> 17 <behaviors:EventTrigger EventName="ContentRendered"> 18 <l:LivetCallMethodAction MethodName="Initialize" MethodTarget="{Binding}" /> 19 </behaviors:EventTrigger> 20 <behaviors:EventTrigger EventName="Closed"> 21 <l:DataContextDisposeAction /> 22 </behaviors:EventTrigger> 23 </behaviors:Interaction.Triggers> 24 25 <Window.Resources> 26 <DataTemplate x:Key="MyTemplate1"> 27 <TextBlock Background="Aqua" Text="{Binding Name}" /> 28 </DataTemplate> 29 <DataTemplate x:Key="MyTemplate2"> 30 <TextBlock Background="Gold" Text="{Binding Name}" /> 31 </DataTemplate> 32 33 <v:ComboHeaderTemplateSelector 34 x:Key="MySelector" 35 Template1="{StaticResource MyTemplate1}" 36 Template2="{StaticResource MyTemplate2}" /> 37 38 <v:UppercaseConverter x:Key="UppercaseConverter" /> 39 </Window.Resources> 40 41 <StackPanel Margin="10"> 42 <ComboBox ItemsSource="{Binding View}"> 43 <ComboBox.GroupStyle> 44 <GroupStyle HeaderTemplateSelector="{StaticResource MySelector}" /> 45 </ComboBox.GroupStyle> 46 <ComboBox.ItemTemplate> 47 <DataTemplate> 48 <TextBlock Text="{Binding Title, Converter={StaticResource UppercaseConverter}}" /> 49 </DataTemplate> 50 </ComboBox.ItemTemplate> 51 </ComboBox> 52 </StackPanel> 53</Window>
cs
1using System.Collections.Generic; 2using System.Windows.Data; 3using Livet; 4 5namespace Questions289487.ViewModels 6{ 7 // これはModelsにあるべきもの?まあ本題ではないので。。 8 public class ComboItem 9 { 10 public string Title { get; set; } 11 public string Category { get; set; } 12 } 13 14 public class MainWindowViewModel : ViewModel 15 { 16 private ListCollectionView _View; 17 public ListCollectionView View 18 { 19 get => _View; 20 set => RaisePropertyChangedIfSet(ref _View, value); 21 } 22 23 public void Initialize() 24 { 25 var items = new List<ComboItem> 26 { 27 new ComboItem() { Title = "ichiro", Category = "CategoryA" }, 28 new ComboItem() { Title = "jiro", Category = "CategoryA" }, 29 new ComboItem() { Title = "saburo", Category = "CategoryA" }, 30 new ComboItem() { Title = "momotaro", Category = "CategoryB" }, 31 new ComboItem() { Title = "kintaro", Category = "CategoryB" }, 32 }; 33 View = new ListCollectionView(items); 34 View.GroupDescriptions.Add(new PropertyGroupDescription("Category")); 35 } 36 } 37}
cs
1using System; 2using System.Globalization; 3using System.Windows; 4using System.Windows.Controls; 5using System.Windows.Data; 6 7namespace Questions289487.Views 8{ 9 public partial class MainWindow : Window 10 { 11 public MainWindow() => InitializeComponent(); 12 } 13 14 public class ComboHeaderTemplateSelector : DataTemplateSelector 15 { 16 public DataTemplate Template1 { get; set; } 17 public DataTemplate Template2 { get; set; } 18 19 public override DataTemplate SelectTemplate(object item, DependencyObject container) 20 { 21 var group = (CollectionViewGroup)item; 22 if("CategoryA" == group.Name.ToString()) return Template1; 23 else return Template2; 24 } 25 } 26 27 public class UppercaseConverter : IValueConverter 28 { 29 public object Convert(object value, Type targetType, object parameter, CultureInfo culture) 30 { 31 var s = (string)value; 32 return s.ToUpper(); 33 } 34 public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) => throw new NotImplementedException(); 35 } 36}
投稿2020/09/04 08:46
編集2023/07/23 05:14総合スコア9884
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
あなたの回答
tips
太字
斜体
打ち消し線
見出し
引用テキストの挿入
コードの挿入
リンクの挿入
リストの挿入
番号リストの挿入
表の挿入
水平線の挿入
プレビュー
質問の解決につながる回答をしましょう。 サンプルコードなど、より具体的な説明があると質問者の理解の助けになります。 また、読む側のことを考えた、分かりやすい文章を心がけましょう。