This question is locked. New answers and comments are not allowed.
I am implementing outlook bar with PRISM 2, i want to bind an icon into my outlookbaritem, for the details please see code below :
| <Grid x:Name="LayoutRoot" Background="White"> |
| <telerik:RadOutlookBar x:Name="outlookBar" Height="350" cal:RegionManager.RegionName="OutlookBarRegion" DisplayMemberPath="ItemHeader" /> |
| </Grid> |
and for the code behind let me say "module A" :
| public partial class ModuleANavigationView : UserControl |
| { |
| private const string TITLE = "SomeTitle"; |
| public ModuleANavigationView (ModuleANavigationViewModel viewModel) |
| { |
| InitializeComponent(); |
| this.DataContext = viewModel; |
| this.ItemHeader = TITLE; |
| Telerik.Windows.Controls.TextSearch.SetText(this, TITLE); |
| } |
| public string ItemHeader { get; set; } |
| } |
how to bind the icon for this case?
thanks..
