Click here to Skip to main content
15,886,919 members
Home / Discussions / WPF
   

WPF

 
QuestionGrid Pin
Ehsan Mashkouty28-Nov-12 0:01
Ehsan Mashkouty28-Nov-12 0:01 
QuestionSet Backgroundcolor when CheckBox in TreeView is checked Pin
Member 963452827-Nov-12 23:43
Member 963452827-Nov-12 23:43 
QuestionWPF Grid Splitter Problem Pin
Kevin Marois27-Nov-12 16:27
professionalKevin Marois27-Nov-12 16:27 
QuestionWPF Dispatch.Invoke/BeginInvoke deadlock? Pin
devvvy26-Nov-12 19:30
devvvy26-Nov-12 19:30 
Answer[SOLN FOUND] - it is NOT that Dispatcher.Invoke buggy! Pin
devvvy29-Nov-12 14:15
devvvy29-Nov-12 14:15 
GeneralRe: [SOLN FOUND] - it is NOT that Dispatcher.Invoke buggy! Pin
Paulo Zemek23-Jan-13 6:41
mvaPaulo Zemek23-Jan-13 6:41 
QuestionChange [EnableClientAccess(RequiresSecureEndpoint = true)] based on config Pin
Adam_Dev20-Nov-12 22:34
Adam_Dev20-Nov-12 22:34 
QuestionCommand Binding Pin
Andy_L_J19-Nov-12 10:51
Andy_L_J19-Nov-12 10:51 
I have the following set-up:

1. ViewModel:
C#
...
public ICommand LoadSomeViewCommand;

public SomeViewModel(IRegionManager regionManager, IUnityContainer container)
{  

  this._regionManager = regioinManager;
  this._container = container;

  LoadCommand = new RelayCommand(new Action<object>(LoadSomeViewExecute), new Predicate<object>(CanLoadExecute));

}
...
private void LoadSomeViewExecute(object obj)
{
  IRegion mainRegion = _regionManager.Regions[RegionNames.MainRegion];
  foreach (var v in mainRegion.Views)
  {
    mainRegion.Remove(v);
  }
  _regionManager.RegisterViewWithRegion(RegionNames.MainRegion, typeof(SomeNewView));

}

private bool CanLoadExecute(object obj)
{
  return true;
}

in the View.cs:
C#
public SomeView(IRegionManager regionManager, IUnityContainer container)
{
  InitializeComponent();
  this.DataContext = new SomeViewModel(regionManager, container);
}

public SomeViewModel ViewModel
{
  get { return (SomeViewModel)this.DataContext; }
}


and in xaml:
XAML
...
<StackPanel grid.Row="2">
  <Button Content="Load"
          Command="{Binding LoadCommand}"/>
  ...
</StackPanel>


When I click the button to load another component, the LoadCommand has been set in the constructor but never seems to be called on the button click.
I have been converting a VB project to C# to try and learn the language and maybe I have missed something in the translation.

I have other containers injecting into the shell that don't use Command calls that are working fine.
I don't speak Idiot - please talk slowly and clearly

"I have sexdaily. I mean dyslexia. Fcuk!"

Driven to the arms of Heineken by the wife

AnswerRe: Command Binding Pin
SledgeHammer0119-Nov-12 11:14
SledgeHammer0119-Nov-12 11:14 
GeneralRe: Command Binding Pin
Andy_L_J19-Nov-12 11:36
Andy_L_J19-Nov-12 11:36 
GeneralRe: Command Binding Pin
Mycroft Holmes19-Nov-12 11:51
professionalMycroft Holmes19-Nov-12 11:51 
GeneralRe: Command Binding Pin
Andy_L_J19-Nov-12 12:14
Andy_L_J19-Nov-12 12:14 
GeneralRe: Command Binding Pin
Mycroft Holmes19-Nov-12 13:22
professionalMycroft Holmes19-Nov-12 13:22 
GeneralRe: Command Binding Pin
SledgeHammer0119-Nov-12 12:14
SledgeHammer0119-Nov-12 12:14 
GeneralRe: Command Binding Pin
Mycroft Holmes19-Nov-12 13:26
professionalMycroft Holmes19-Nov-12 13:26 
GeneralRe: Command Binding Pin
Wayne Gaylard20-Nov-12 3:29
professionalWayne Gaylard20-Nov-12 3:29 
GeneralRe: Command Binding Pin
SledgeHammer0120-Nov-12 6:42
SledgeHammer0120-Nov-12 6:42 
AnswerRe: Command Binding Pin
Pete O'Hanlon22-Nov-12 22:41
mvePete O'Hanlon22-Nov-12 22:41 
GeneralRe: Command Binding Pin
Andy_L_J23-Nov-12 1:48
Andy_L_J23-Nov-12 1:48 
QuestionWPF Components For WinForm Pin
alirezamansoori13-Nov-12 5:26
alirezamansoori13-Nov-12 5:26 
AnswerRe: WPF Components For WinForm Pin
Pete O'Hanlon13-Nov-12 7:56
mvePete O'Hanlon13-Nov-12 7:56 
AnswerRe: WPF Components For WinForm Pin
Abhinav S13-Nov-12 21:17
Abhinav S13-Nov-12 21:17 
GeneralRe: WPF Components For WinForm Pin
alirezamansoori14-Nov-12 20:40
alirezamansoori14-Nov-12 20:40 
QuestionCan anyone suggest any good books or tutorials on WPF-MVVM please? Pin
Vijay Kanda11-Nov-12 19:22
Vijay Kanda11-Nov-12 19:22 
AnswerRe: Can anyone suggest any good books or tutorials on WPF-MVVM please? Pin
Praveen Raghuvanshi13-Nov-12 7:22
professionalPraveen Raghuvanshi13-Nov-12 7:22 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.