I've got a window with a field like this:
public partial class VariablesWindow : Window
{
public Dictionary<string, string> Variables { get; private set; }
And then in the window's XAML, I've created a ListView. How do I set the ItemsSource to bind to Variables?
<ListView ItemsSource="???"