这一阵开始学习SL4的一些功能
新建了一个silverlight navigation with windows7 theme的模板,设计时一切正常。
结果,只是改了几个文本,把原来的E文改成中文,就编译不过了。中文还会出现乱码状态。
<UserControl
x:Class="SLControlTest.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:navigation="clr-namespace:System.windows.Controls;assembly=System.windows.Controls.Navigation"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/Expression/blend/2008" mc:Ignorable="d"
d:DesignWIDth="640" d:DesignHeight="300">
<GrID x:name="LayoutRoot" Style="{StaticResource LayoutRootGrIDStyle}">
<GrID.RowDeFinitions>
<RowDeFinition Height="auto"/>
<RowDeFinition Height="auto"/>
<RowDeFinition Height="*"/>
</GrID.RowDeFinitions>
<border GrID.rowspan="3" Background="{StaticResource NavPagelinedB@R_404_6678@}" />
<border x:name="brandingborder" Style="{StaticResource NavbrandingborderStyle}">
<StackPanel x:name="brandingStackPanel" Style="{StaticResource NavbrandingStackPanelStyle}" >
<ContentControl Style="{StaticResource NavlogoIcon}" />
<TextBlock x:name="ApplicationnameTextBlock" Style="{StaticResource ApplicationnameStyle}" Text="我的程序,这里编译不过" />
</StackPanel>
</border>
<border x:name="linksborder" Style="{StaticResource NavlinksborderStyle}" GrID.Row="1">
<StackPanel x:name="linksstackPanel" Style="{StaticResource linksstackPanelStyle}">
<Hyperlinkbutton Style="{StaticResource linkStyle}" NavigateUri="Home" Targetname="ContentFrame" Content="home" />
<Hyperlinkbutton Style="{StaticResource linkStyle}" NavigateUri="About" Targetname="ContentFrame" Content="about" />
<Hyperlinkbutton Style="{StaticResource linkStyle}" NavigateUri="rating" Targetname="ContentFrame" Content="投票,能编译但乱码" />
</StackPanel>
</border>
<border x:name="Contentborder" Style="{StaticResource NavContentborderStyle}" GrID.Row="2">
<navigation:Frame x:name="ContentFrame" Style="{StaticResource NavContentFrameStyle}" Navigated="ContentFrame_Navigated" NavigationFailed="ContentFrame_NavigationFailed" />
</border>
</GrID>
</UserControl>
错误 1 Cannot resolve reference assemblIEs. Please check the reference assemblIEs. 给定编码中的字符无效。 第 22 行,位置 114。 F:/Projects/SLControlTest/SLControlTest/MainPage.xaml SLControlTest
下班了,明天来研究这个问题了。
估计是使用的模板的问题。
总结以上是内存溢出为你收集整理的SL 4 乱码的问题全部内容,希望文章能够帮你解决SL 4 乱码的问题所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)