A few more details please, otherwise nobody can help.Does not show up in MP2.1.3.
Artist = string.Empty;
Title = string.Empty;
Album = string.Empty;
CurrentStreamLogo = string.Empty;
Listeners = string.Empty;
// Prop for the Stream
private MyStream _stream;
protected AbstractProperty _channelNameProperty;
public string ChannelName
{
get { return (string)_channelNameProperty.GetValue(); }
set { _channelNameProperty.SetValue(value); }
}
_stream = WebradioHome.SelectedStream;
ChannelName = _stream.Title;
Yes, I saw the missing parameters in the code. Unfortunately I do not understand #C, but only WPF@ge2301
Use more/other Parameters in the View, need changes in the source of "WebRadioUIContributor".
All Informations about the Channel are in the WebradioHome.SelectedStream.
C#:// Prop for the Stream private MyStream _stream; protected AbstractProperty _channelNameProperty; public string ChannelName { get { return (string)_channelNameProperty.GetValue(); } set { _channelNameProperty.SetValue(value); } }
After this set the Props in "Initialize" and "Update".
C#:_stream = WebradioHome.SelectedStream; ChannelName = _stream.Title;
This is the latest branch with all changes:Which branch should I check out to develop?
The "master" and the "dev" have a very old BassLibrary. I can not test that.