I have some object that is instantiated in code behind, for instance, the XAML is called window.xaml and within the window.xaml.cs
protected Dictionary<string, myClass> myDictionary;
How can I bind this object to, for example, a list view, using only XAML markups?
Edit v2
(This is exactly I have in my test code):
<Window x:Class="QuizBee.Host.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="{Binding windowname}" Height="300" Width="300"
    DataContext="{Binding RelativeSource={RelativeSource Self}}">
    <Grid>
    </Grid>
</Window>
And in codebehind
public partial class Window1 : Window
{
    public const string windowname = "ABCDEFG";
    public Window1()
    {
        InitializeComponent();
    }
}
Suppose the title should become "ABCDEFG" right? but it ends up showing nothing.