Начальная страница Visual Studio с WPF

Я скопировал файлы.xaml и.dll в папки..Xaml только с макетом отображается на стартовой странице. Если я добавляю код, я получаю сообщения об ошибках. Я следовал инструкциям. https://docs.microsoft.com/en-us/visualstudio/extensibility/creating-a-custom-start-page?view=vs-2017

Стартовая страница VS не распознает событие Click. Я запускаю xaml в VS как Window Control, он работает как положено.

<UserControl
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:MyNamespace="clr-namespace:StartPage;assembly=StartPage"
xmlns:vs="clr-namespace:Microsoft.VisualStudio.PlatformUI;assembly=Microsoft.VisualStudio.Shell.14.0"
xmlns:vsfx="clr-namespace:Microsoft.VisualStudio.Shell;assembly=Microsoft.VisualStudio.Shell.14.0"
xmlns:MeineControls="clr-namespace:StartPage"

mc:Ignorable="d"
 Height="350" Width="525">
    <Grid>
        <Grid x:Name="LayoutGrid" >
            <Button  Click="Button_Click" Content="push me" Foreground="black" />
            <Label x:Name="label" Content="Label" HorizontalAlignment="Left" Margin="720,171,-295,0" VerticalAlignment="Top" Width="100"/>
        </Grid>
    </Grid>
</UserControl>

0 ответов

Другие вопросы по тегам