0

我有一个 WPF 桌面应用程序,我想在启动主窗口之前检查是否可以使用 EF 连接到我的数据库。所以我尝试连接到数据库,如果发生异常,我只显示一个窗口,要求用户输入正确的数据库连接字符串。

用户输入连接字符串后,我重试连接到数据库,如果它连接,我想启动我的主窗口并让应用程序启动。

编辑:我稍微更改了我的代码,但仍然无法正常工作。我认为这是关于关闭一个窗口,然后尝试在 Application 类中显示另一个窗口。如果未显示 ServerConfigurationWin,它将起作用。

然而发生的情况是,在我向用户显示数据库配置窗口后,应用程序调用 App.xaml 文件中声明的 StartupUri 窗口的构造函数,但屏幕上没有显示任何内容。

谢谢。

这是我的应用程序代码:

public partial class App : Application
{
    protected override void OnStartup(StartupEventArgs e)
    {
        base.OnStartup(e);

        bool success = false;
        while (!success)
        {
            try
            {
                DemirbasContext context = new DemirbasContext();
                DbInitializer initializer = new DbInitializer();
                Database.SetInitializer<DemirbasContext>(initializer);
                context.Database.Initialize(false);
                success = true;
            }
            catch (ProviderIncompatibleException)
            {
                ServerConfigurationWin configurationWin = new ServerConfigurationWin();
                if (!configurationWin.ShowThemAll())
                {
                    // ShowThemAll() returns that operation is canceled.
                    App.Current.Shutdown();
                    return;
                }
                success = false;
            }
        }
    }

    public App()
    {

    }

    void App_DispatcherUnhandledException(object sender, DispatcherUnhandledExceptionEventArgs e)
    {
        // Process unhandled exception do stuff below
        Console.WriteLine("***Message***");
        Console.WriteLine(e.Exception.Message);
        Console.WriteLine("***Stack Trace***");
        Console.WriteLine(e.Exception.StackTrace);
        Console.WriteLine("***Target Site***");
        Console.WriteLine(e.Exception.TargetSite);
        // Prevent default unhandled exception processing
        e.Handled = true;
    }
}

应用程序.xaml:

<Application x:Class="Demirbas.App"
         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
         DispatcherUnhandledException="App_DispatcherUnhandledException"
         StartupUri="Enterance.xaml">
<Application.Resources>
    <Style TargetType="Button">
        <Setter Property="Height" Value="25" />
        <Setter Property="Width" Value="75" />
        <Setter Property="MinWidth" Value="25" />
        <Setter Property="Margin" Value="5,0" />
        <Setter Property="Padding" Value="0" />
    </Style>
    <Style TargetType="Label">
        <Setter Property="Margin" Value="5,0" />
    </Style>

</Application.Resources>

4

2 回答 2

0

看来您无法从 Application 类中显示第二个窗口。所以我不得不关闭应用程序并重新启动。

于 2012-11-02T14:02:14.873 回答
0

当你的 WPF applicaitno 启动它寻找入口点来调用你的主窗口时,你应该尝试这个。您可以使用 App.Xaml 的 StartupUri 更改默认主窗口。或者您可以像这样覆盖启动调用。

App.Xaml.cs 类

 protected override void OnStartup(StartupEventArgs e)
    {
        base.OnStartup(e);
        bool condition = false;

        //you logic. / you code.

        if (condition)
            (App.Current.MainWindow = new MyMainWindow ()).Show();
        else
            App.Current.Shutdown();
    }
于 2012-10-19T13:56:20.510 回答