WPF MainWindow在运行时与其预期结果有所不同

时间:2019-06-13 18:08:08

标签: c# wpf visual-studio xaml

我对这个平台还比较陌生,所以请原谅我缺乏专业素养。

在创建我的第一个WPF应用程序时遇到了一个问题。 我设法在MainWindow中包含一些按钮并运行它,但是发现了一些错误,因此我尝试从头开始。

我决定运行一个空窗口,但随后在运行时看到了先前的“越野车”窗口。从那时起,无论我对MainWindow.xaml文件进行什么更改,我都会得到相同的旧结果。

我试图检查我的程序是否可以编译,以及我所知道的可以编译。

不幸的是,我删除了负责“ buggy”窗口的旧xaml代码,但我可以回想起这种情况。

<Window x:Class="ProjektPO.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        xmlns:local="clr-namespace:ProjektPO"
        mc:Ignorable="d"
        Title="MainWindow" Height="450" Width="800">
    <Grid>
        <StackPanel>
            <Grid>
                <Grid.ColumnDefinitions>
                    <ColumnDefinition Width="*"/>
                    <ColumnDefinition Width="*"/>
                </Grid.ColumnDefinitions>
                <Button x:Name="A" Content="B" Click="A_Click"/>
            </Grid>
        </StackPanel>
    </Grid>
</Window>

.cs文件(几乎是默认文件)

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;

namespace ProjektPO
{
    /// <summary>
    /// Logika interakcji dla klasy MainWindow.xaml
    /// </summary>
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
        }

        private void A_Click(object sender, RoutedEventArgs e)
        {

        }
    }
}

程序编译并显示旧的“越野车”窗口。

0 个答案:

没有答案