0

私のアプリケーションでは、メイン モジュールのトラフ コードをロードしようとしています。すべてがレンダリングの時点まで機能し、レンダリングされない理由がわかりません。コンテンツには適切な値とすべてが含まれています..私の推測では、何かがぐらぐらして、それが欠けているようです.

ビューを保持するコントロール

[ContentPropertyAttribute("ContentView")]
public class ContentControlExtened : ContentControl
{
    public static readonly DependencyProperty ContentProperty =
        DependencyProperty.Register(
            "Type",
            typeof(Type),
            typeof(ContentControl),
            new FrameworkPropertyMetadata(null, ContentTypeChanged));

    public static readonly DependencyProperty ContentViewProperty =
         DependencyProperty.Register(
             "View",
             typeof(FrameworkElement),
             typeof(ContentControl),
             new FrameworkPropertyMetadata(null, ContentViewChanged));

    private static void ContentViewChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
    {
        //throw new NotImplementedException();
    }

    public ContentControlExtened()
    {
        this.Loaded += ContentControlLoaded;
    }

    private void ContentControlLoaded(object sender, RoutedEventArgs e)
    {
        this.LoadContent();
    }

    private void LoadContent()
    {
        UserControl u = null;

        if (Type != null)
        {
            u = (UserControl)ServiceLocator.Current.GetInstance(this.Type);
        }
        u.Background = new SolidColorBrush(Color.FromRgb(0, 0, 255));
        this.View = u;
    }

    public Type Type
    {
        get { return (Type)GetValue(ContentProperty); }
        set { SetValue(ContentProperty, value); }
    }

    public FrameworkElement View
    {
        get { return (FrameworkElement)GetValue(ContentProperty); }
        set
        {
            SetValue(ContentProperty, value);
        }
    }
    }

指定された moduleInfo のメイン ビューをロードするシェルのメソッド

        private void OpenMainView(ModuleInfo module)
    {
        Type moduleType = Type.GetType(module.ModuleType);
        var moduleMainViewType = moduleType.Assembly.GetType(moduleType.Namespace + ".Views.MainView");
        this.ContentHolder.MainContent.Type = moduleMainViewType;
    }

メインビューのコンストラクターは簡単です。標準コントロールの InitializeComponent() と Datacontext だけが servicelocator を介して設定されています。

4

1 に答える 1