我在SilverLight中编写的按钮为什么总是显示不出来
在编译时显示:在System.Windows.Markup.XamlParseException中第一次偶然出现的“System.Windows.dll”类型的异常其他信...
在编译时显示:
在 System.Windows.Markup.XamlParseException 中第一次偶然出现的“System.Windows.dll”类型的异常
其他信息: AG_E_PARSER_BAD_PROPERTY_VALUE [Line: 9 Position: 39]
然后表明有问题的地方是System.Windows.Application.LoadComponent(this, new System.Uri("/SilverlightApplication1;component/Page.xaml", System.UriKind.Relative));这行代码
我写的就是一个最简单的按钮代码为
<Button: x:name="mybutton" Content="Click me"
Width="240" Height="100"
FontSize="24" Foreground="Red"
Clicl="mybutton_click">
</Button>
代码应该没问题,编译能过去,就是调试时在IE中显示不出来 展开
在 System.Windows.Markup.XamlParseException 中第一次偶然出现的“System.Windows.dll”类型的异常
其他信息: AG_E_PARSER_BAD_PROPERTY_VALUE [Line: 9 Position: 39]
然后表明有问题的地方是System.Windows.Application.LoadComponent(this, new System.Uri("/SilverlightApplication1;component/Page.xaml", System.UriKind.Relative));这行代码
我写的就是一个最简单的按钮代码为
<Button: x:name="mybutton" Content="Click me"
Width="240" Height="100"
FontSize="24" Foreground="Red"
Clicl="mybutton_click">
</Button>
代码应该没问题,编译能过去,就是调试时在IE中显示不出来 展开
1个回答
展开全部
System.Windows.Application.LoadComponent(this, new System.Uri("/SilverlightApplication1;component/Page.xaml", System.UriKind.Relative))
这是因为你在Xaml中写的代码有点问题,至于是什么问题,请把代码贴上来一些,不然没法解答:)
AG_E_PARSER_BAD_PROPERTY_VALUE [Line: 9 Position: 39]
猜想你是否个属性值设错了
<UserControl
x:Class="TestSilverLight.Page"
xmlns="http://schemas.microsoft.com/client/2007"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Width="400" Height="300">
<Grid x:Name="LayoutRoot" Background="White">
<StackPanel>
<TextBlock x:Name="textBlock"/>
<Button Height="24" Width="80" Content="Click Me!" Click="Button_Click"/>
</StackPanel>
</Grid>
</UserControl>
我这边很正常,能不能贴个完整的代码上来,包括创建工程时的流程
这是因为你在Xaml中写的代码有点问题,至于是什么问题,请把代码贴上来一些,不然没法解答:)
AG_E_PARSER_BAD_PROPERTY_VALUE [Line: 9 Position: 39]
猜想你是否个属性值设错了
<UserControl
x:Class="TestSilverLight.Page"
xmlns="http://schemas.microsoft.com/client/2007"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Width="400" Height="300">
<Grid x:Name="LayoutRoot" Background="White">
<StackPanel>
<TextBlock x:Name="textBlock"/>
<Button Height="24" Width="80" Content="Click Me!" Click="Button_Click"/>
</StackPanel>
</Grid>
</UserControl>
我这边很正常,能不能贴个完整的代码上来,包括创建工程时的流程
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询