我对C#和.NET一般都很陌生,所以这可能看起来像个愚蠢的问题?我正在尝试遵循这个建议here
我需要一些帮助,说明语句的确切含义“首先,我将自己的WebBrowser控件包装在自定义类中以添加功能,在该类中我声明这个常量.....”
目前我手动添加WPF Web浏览器控件,如下面的XAML
<Window x:Class="ProjectX.WebbrowserWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="WebbrowserWindow" Height="378" Width="632">
<Grid>
<WebBrowser HorizontalAlignment="Stretch" Margin="0,32,0,0" Name="webBrowser1" VerticalAlignment="Stretch" Navigated="webBrowser1_Navigated" />
<Button Content="Go!" Height="22" HorizontalAlignment="Left" Margin="507,3,0,0" Name="button1" VerticalAlignment="Top" Width="78" Click="button1_Click" />
<TextBox Height="23" HorizontalAlignment="Left" Margin="4,2,0,0" Name="textBox1" VerticalAlignment="Top" Width="497" />
</Grid>
</Window>
我假设我只需要创建一个新类(比如WebBrowserCustom.cs)并添加这些事件?但是我很难理解我如何将它添加到WPF窗口?
谢谢