0

私は Windows ストア アプリケーションに取り組んでいますが、問題が発生しました。

エラーなしで完全に機能するプログラムをコンピューターに残しました。コンピューターから数日離れた後、コンピューターを起動してプログラムを実行しようとしました。すぐにクラッシュし、次のように述べています。InitializeComponent で。

ただし、App.Xaml.cs ファイルで StartPage を OnLaunched メソッドの Mainpage に変更すると、正常に動作します。しかし、ログインページがありません。また、Mainpage から LoginPage にリダイレクトできないか、クラッシュします。

マイ CallStack [外部コード]

EmployeeAssistant.exe!EmployeeAssistant.PagesWithSnappedViews.LoginPage.LoginPage() 49 行目 + 0x8 バイト C# [外部コード] EmployeeAssistant.exe!EmployeeAssistant.App.OnLaunched(Windows.ApplicationModel.Activation.LaunchActivatedEventArgs args) 58 行目 + 0x42 バイト C# [外部コード]コード]

マイ ローカルズ ここに画像の説明を入力

- - - - - - - - - -編集 - - - - - - - - - -

    private readonly ObservableCollection<PropertyInfo> _colorSource = new ObservableCollection<PropertyInfo>();
    private string _selectedColorName;

    public ObservableCollection<PropertyInfo> ColorSource
    {
        get { return _colorSource; }
    }
    public string SelectedColorName
    {
        get { return _selectedColorName; }
        set
        {
            _selectedColorName = value;
            OnPropertyChanged();
        }
    }

    public LoginPage()
    {

            InitializeComponent();

            var colors = typeof(Colors).GetTypeInfo().DeclaredProperties;

            foreach (var item in colors)
            {
                ColorSource.Add(item);
            }

    }

App.OnLaunched:

    /// <summary>
    /// Invoked when the application is launched normally by the end user.  Other entry points
    /// will be used when the application is launched to open a specific file, to display
    /// search results, and so forth.
    /// </summary>
    /// <param name="args">Details about the launch request and process.</param>
    protected override void OnLaunched(LaunchActivatedEventArgs args)
    {
        Frame rootFrame = Window.Current.Content as Frame;

        // Do not repeat app initialization when the Window already has content,
        // just ensure that the window is active
        if (rootFrame == null)
        {
            // Create a Frame to act as the navigation context and navigate to the first page
            rootFrame = new Frame();

            if (args.PreviousExecutionState == ApplicationExecutionState.Terminated)
            {
                //TODO: Load state from previously suspended application
            }

            // Place the frame in the current Window
            Window.Current.Content = rootFrame;
        }

        if (rootFrame.Content == null)
        {
            // When the navigation stack isn't restored navigate to the first page,
            // configuring the new page by passing required information as a navigation
            // parameter
            if (!rootFrame.Navigate(typeof(LoginPage), args.Arguments))
            {
                throw new Exception("Failed to create initial page");
            }
        }
        // Ensure the current window is active
        Window.Current.Activate();
    }

何が起こっているのかを確認するためにデバッグしようとすると、LayoutAwarePage と次の行からコードをロードするだけです。次に、InitializeComponent に進み、AccessViolationException を取得します。

何が起こっているのか、おそらくこれを解決する方法を知っている人はいますか?

ニクラス

4

2 に答える 2

1

私がやったことは、基本的なページを作成し、自分のページを作り直すことでした. そして今、それはうまく機能します。何が問題だったのかわからない。しかし、それは私がそれを解決した方法です。

于 2013-05-14T06:24:55.653 に答える
0

私はまったく同じ問題を抱えていました。新しいページを作成してやり直すと、同じ問題が発生しました。そのため、根本的な原因を特定するまで、XAML の一部をコメントアウトしました。

<Style TargetType="TextBox" x:Key="printableTextBox">
    <Setter Property="BorderThickness" Value="{Binding IsPrinting, Converter={StaticResource printInputBoolToThicknessConverter}}"/>
</Style>

UWP XAML は a をサポートしていないことが判明しBindingましStyleSetter.Value。実際に VS ではSetter、ツール ヒント「壊滅的な失敗」で青い波線が表示されます。私は少し警戒心が強いと思った..

したがって、これが他の誰かに役立つことを願っていますがAccessViolationException、この場合はまったく役に立ちません。

于 2017-01-04T12:37:13.090 に答える