Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This is my Globals class

public class Globals
{
    private static Globals instance = new Globals();

    protected Globals()
    {

    }

    public static Globals Instance
    {            
        get { return instance; }
    }

    public TrackList Tracklist = new TrackList();
}

This is TrackList in a smart code:

public class TrackList : SettingAttribute {
    public TrackList()
    {
        this.tracks = new ObservableCollectionExt<Track>();
    }

    protected ObservableCollectionExt<Track> tracks;

    public ObservableCollectionExt<Track> Tracks
    {
        get
        {
            return tracks;
        }
    }

    public class Track : ICloneable
    {
        protected Track()
        {
            // Track instance is achieved by GetTrack
        }

        public GetTrack(string path)
        {
            // code implementation here
        }
    }
}

I wish to bind Globals.Instance.Tracklist.Tracks in a ListView using XAML.

Via runtime, is really easy using ItemSource property

lv.ItemsSource = Globals.Instance.Tracklist.Tracks;

but using xaml I tried with several codes but none is good.

share|improve this question

2 Answers

ItemsSource="{Binding Tracklist.Tracks, Source={x:Static local:Globals.Instance}}"

Tracklist has to be a property. Change your Globals class to:

public class Globals
{
    private static Globals instance = new Globals();

    protected Globals()
    {
        Tracklist = new TrackList();
    }

    public static Globals Instance
    {
        get { return instance; }
    }

    public TrackList Tracklist { get; private set; }
}
share|improve this answer

In you view model create Property with type Globals as follows:

    property Globals Globals {get;set;}

In XAML bind to it:

    <ListView ItemsSource="{Binding Path=Globals.Instance.Tracklist.Tracks}">
share|improve this answer
Syned I follewed your solution and it works! Thanks a lot for all the answers too. – user1649247 Sep 7 '12 at 11:56
You are welcome! – syned Sep 7 '12 at 12:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.