2

我刚刚开始使用 Silverlight 3.0,我想知道 3.0 中是否没有此功能。似乎尽管我遇到了所有示例,但我似乎无法设置样式。

下面的代码给了我以下错误: XML 命名空间中不存在标记“类型”| 它强调了 Style 元素中的 TargetType 属性。任何帮助,将不胜感激。

<UserControl xmlns:controls="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls"  xmlns:dataInput="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Data.Input"  x:Class="MultiSelectFileUploader.MainPage"
    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:DesignWidth="640" d:DesignHeight="480">
    <UserControl.Resources>
        <Style x:Key="ButtonStyle" TargetType="{x:Type Button}">
            <Setter Property="Width" Value="150" />
            <Setter Property="Margin" Value="0 0 250 0" />
        </Style>
    </UserControl.Resources>


    <Grid x:Name="LayoutRoot">
        <Grid.RowDefinitions>
            <RowDefinition Height="100" />
        </Grid.RowDefinitions>

        <controls:TabControl>
            <controls:TabItem Header="Upload Files">
                <!--<Button x:Name="btnBrowse" Grid.Row="0" Width="150" Margin="0 0 250 0" Content="Browse" Click="btnBrowse_Click" />-->
                <Button Style="{StaticResource ButtonStyle}" x:Name="btnBrowse" Grid.Row="0" Content="Browse" Click="btnBrowse_Click" />
            </controls:TabItem>
            <controls:TabItem Header="View Files" >


            </controls:TabItem>

        </controls:TabControl>
    </Grid>
</UserControl>
4

1 回答 1

1

更改TargetType="{x:Type Button}"TargetType="Button"

Silverlight 3 不支持您正在使用的 WPF TargetType 语法。

于 2012-06-06T14:51:54.097 回答