私はこのユーザー コントロール XAML を持っています:
<Window x:Class="MyProj.Dialog"
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:shell="http://schemas.microsoft.com/winfx/2006/xaml/presentation/shell"
mc:Ignorable="d">
<Grid>
<ItemsControl ItemsSource="{Binding Foos}">
<ItemsControl.ItemTemplate>
<DataTemplate>
<TextBlock Text="ASd" />
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
</Grid>
</Window>
および対応するコードビハインド:
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.ComponentModel;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
using System.Windows.Media.Effects;
using System.Windows.Threading;
namespace MyProj
{
public partial class Dialog : Window
{
public Dialog() : base()
{
InitializeComponent();
//DataContext = this;
}
public ObservableCollection<string> Foos = new ObservableCollection<string> { "foo", "bar" };
}
}
私が抱えている問題は、何らかの理由でItemsControl
何も表示されないことです。奇妙なことに、出力に拘束力のある警告すら表示されません。