特定のタイプではない CollectionViewSource の要素の数を textblock 内に表示する必要があります。TextBlock の Text プロパティと Collection の間に Converter を追加してこれを達成しようとしましたが、CollectionViewSource にバインドされた ObservableCollection に項目を追加しても、Converter はトリガーされません。Count プロパティに直接バインドすると、コンバーターがトリガーされるため、コレクションは変更されます。
これは CollectionViewSource です。
<CollectionViewSource x:Key="PatientRelatedWorkflowsCollection"
Source="{Binding PatientRelatedWorkflows}"
x:Uid="68cbfcf5481c43bdb83d6b31fe8ddc34">
<CollectionViewSource.SortDescriptions>
<my:SortDescription PropertyName="Patient.LastName" x:Uid="cf8cdd34c5d14c049a27e46848aca60d" />
</CollectionViewSource.SortDescriptions>
<CollectionViewSource.GroupDescriptions>
<PropertyGroupDescription PropertyName="Patient"
Converter="{StaticResource WorkflowPatientGroupConverter}"
x:Uid="d03e9b90df654454b5f5f7a8ee9cb1bf">
</PropertyGroupDescription>
</CollectionViewSource.GroupDescriptions>
</CollectionViewSource>
バインディングは次のとおりです。
<TextBlock Text="{Binding Converter={StaticResource CountNonConsultationWorkflowsConverter}}" />
そして、ここにコンバーターがあります:
public class CountNonConsultationWorkflowsConverter: IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
var workflowItems = value as ReadOnlyObservableCollection<Object>;
if (workflowItems != null)
{
return workflowItems.Count(item => (item as WorkflowDataViewModel) != null && (item as WorkflowDataViewModel).WorkflowType != WorkflowType.ConsultPatient).ToString(CultureInfo.InvariantCulture);
}
return "0";
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
throw new NotImplementedException();
}
}
注:以下のように、MultiBinding と MultiValueConverter を組み合わせて使用することで、なんとか機能させることができました。「カウント」プロパティが PropertyChange をトリガーするため、これは機能しますが、少しハックだと感じており、より良い解決策が必要です。
<TextBlock.Text>
<MultiBinding Converter="{StaticResource CountNonConsultationWorkflowsConverter}">
<Binding x:Uid="eb26d2c0bdb94d18ab48d8e25ce5f5ea" />
<Binding Path="Count" x:Uid="5555c981fda94bc6ad823c2f1e94b0f1" />
</MultiBinding>
</TextBlock.Text>
どうすればこれをより良くできるかについてのアイデアはありますか? 助けていただければ幸いです。