ben Pencere Yüklendi durumlarında bazı bilgilerini yüklemek için gereken Windows 2012'de bir WPF projesi var. Bunu CodeBehind'den ziyade View Modelinde yapmam gerekiyor. Benim xaml içindePencere Yüklendi ve WPF
: Ben şu kodu kullanın çalışılıyor benim Görünüm Modeli
<interactivity:Interaction.Behaviors>
<behaviors:WindowLoadedBehavior LoadedCommand="{Binding WindowLoadedCommand}" />
</interactivity:Interaction.Behaviors>
:
private DelegateCommand _WindowLoadedCommand;
public DelegateCommand WindowLoadedCommand
{
get
{
return _WindowLoadedCommand;
}
private set
{
_WindowLoadedCommand = value;
}
}
public ShellViewModel()
{
WindowLoadedCommand = new DelegateCommand(WindowLoadedAction);
}
protected void WindowLoadedAction()
{
...
}
Benim ekli davranışı:
public class WindowLoadedBehavior : Behavior<FrameworkElement>
{
[SuppressMessage("Microsoft.StyleCop.CSharp.MaintainabilityRules", "SA1401:FieldsMustBePrivate", Justification = "Dependency Property. Allow public.")]
public static DependencyProperty LoadedCommandProperty = DependencyProperty.Register("LoadedCommand", typeof(ICommand), typeof(WindowLoadedBehavior), new PropertyMetadata(null));
public ICommand LoadedCommand
{
get { return (ICommand)GetValue(LoadedCommandProperty); }
set { SetValue(LoadedCommandProperty, value); }
}
protected override void OnAttached()
{
base.OnAttached();
AssociatedObject.Loaded += AssociatedObject_Loaded;
}
protected override void OnDetaching()
{
AssociatedObject.Loaded -= AssociatedObject_Loaded;
base.OnDetaching();
}
private void AssociatedObject_Loaded(object sender, RoutedEventArgs e)
{
if (LoadedCommand != null)
LoadedCommand.Execute(null);
}
}
OnAttached, AssociatedObject_Loaded ve LoadedCommand olsun hepsi ateş ediyor, ancak LoadedCommand seti ateş etmiyor ve belli ki WindowLoadedCommand ateş etmiyor. Çalışmak için ne yapabilirim?
doğrudan komuta bağlayıcı değildir özel bir neden var? –
Okuduğumdan, Window Loaded olayını doğrudan bağlamak bazı nedenlerle çalışmıyor. –