我是关于清洁&加快我的.xaml页面,但我不确定真正需要什么,重要的是:
<phone:PhoneApplicationPage
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
FontFamily="{StaticResource PhoneFontFamilyNormal}"
FontSize="{StaticResource PhoneFontSizeNormal}"
SupportedOrientations="Portrait" Orientation="Portrait"
mc:Ignorable="d" d:DesignHeight="696" d:DesignWidth="480">
已经删除了我知道我可以删除而没有复杂的东西。
我想知道这些部分的用途:
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"
mc:Ignorable="d" d:DesignHeight="696" d:DesignWidth="480">
谢谢!
答案 0 :(得分:2)
的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” mc:Ignorable =“d”d:DesignHeight =“696”d:DesignWidth =“480”&gt;
混合相关标签,如果你没有使用混合,你可以删除它!