仍然无法使用Silverlight中的附加属性用于Windows Phone

时间:2013-02-11 21:50:31

标签: c# silverlight properties

我是一名具有javascript基本经验的总菜鸟,但我真的很想学习c#net编程来制作手机应用程序。我正在尝试做的应用程序需要我能够在某些xaml元素上设置自定义属性。

我在stackoverflow(Adding custom attributes to an element in XAML?)上发现了这个似乎是一个简单的例子,并没有让它工作。然后我在各处阅读了很多文档,感觉比以往更加困惑......我认为我的概念是正确的,但我的实现并非如此。例如,如果我只是从我提到的页面复制代码,我会得到这个:

MainPage.xaml中

<phone:PhoneApplicationPage 
x:Class="PhoneApp1.MainPage"
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:local="clr-namespace:MyNamespace" //<--ADDED BY ME
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d" d:DesignWidth="480" d:DesignHeight="768"
FontFamily="{StaticResource PhoneFontFamilyNormal}"
FontSize="{StaticResource PhoneFontSizeNormal}"
Foreground="{StaticResource PhoneForegroundBrush}"
SupportedOrientations="Portrait" Orientation="Portrait"

shell:SystemTray.IsVisible="True">

<!--LayoutRoot is the root grid where all page content is placed-->
<Grid x:Name="LayoutRoot" Background="Transparent">
    <Grid.RowDefinitions>
        <RowDefinition Height="Auto"/>
        <RowDefinition Height="*"/>
    </Grid.RowDefinitions>

    <!--TitlePanel contains the name of the application and page title-->


    <!--ContentPanel - place additional content here-->
    <Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0"></Grid>
</Grid>
</phone:PhoneApplicationPage>

MainPage.xaml.cs中

using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;
using Microsoft.Phone.Controls;

namespace PhoneApp1
{
public partial class MainPage : PhoneApplicationPage
{

    // Constructor
    public MainPage()
    {
        InitializeComponent();
    }
 }
namespace MyNamespace
{
    public static class MyClass
    {

        public static readonly DependencyProperty MyPropertyProperty = DependencyProperty.RegisterAttached("MyProperty",
            typeof(string), typeof(MyClass), new FrameworkPropertyMetadata(null));

        public static string GetMyProperty(UIElement element)
        {
            if (element == null)
                throw new ArgumentNullException("element");
            return (string)element.GetValue(MyPropertyProperty);
        }
        public static void SetMyProperty(UIElement element, string value)
        {
            if (element == null)
                throw new ArgumentNullException("element");
            element.SetValue(MyPropertyProperty, value);
        }
    }
}
}

从那里,我无法添加任何视觉元素,因为我有这个错误:

错误1找不到类型或命名空间名称“FrameworkPropertyMetadata”(您是否缺少using指令或程序集引用?)

现在,如果这个代码有效,根据我的理解,附加属性只对我的类的objetc是可用的...你如何绑定一个xaml元素和一个c#类?

如果您知道我想去哪里,我们将非常感谢您提供的任何信息。我已经在这个小细节上花了好几个小时......

非常感谢提前!!!!!!!!!!!!! (是的,我是一个菜鸟......我订购了一些c#书,我检查了很多网站,但仍然需要指导......再次感谢)

编辑: 跟进:给我的建议有用,让我编译但是:

xmlns:local =“clr-namespace:MyNamespace”给出了这个错误:

未定义的CLR命名空间。 'clr-namespace'URI是指未包含在程序集中的名称空间“MyNamespace”。我需要那条线吗?

从那里我不能添加任何其他元素。如果我删除该行,并添加一个椭圆,例如,我不能给它一个MyProperty,VS告诉我:

在Ellipse类型中找不到Property'MyProperty'。

我知道我为MyClass注册了'MyProperty'。那么,我如何给Ellipse一类'MyClass'?我应该采取另一种方法吗?我可以在任何我想要的东西上使用'MyProperty'吗?任何提示高度赞赏,谢谢!

1 个答案:

答案 0 :(得分:0)

在大多数情况下,一切看起来都很好。 您只需要将FrameworkPropertyMetadata更改为PropertyMetadata,代码应该编译得很好。

更新: XAML命名空间实际上是错误的。您已在PhoneApp1名称空间内定义了MyNamespace。因此,完整的命名空间是PhoneApp1.MyNamespace

xmlns:local="clr-namespace:PhoneApp1.MyNamespace"

This article has more on xaml namespaces in Silverlight

一旦对命名空间进行排序,应用附加属性就很简单了。实际上,您已经使用了附加属性

  

壳:SystemTray.IsVisible = “真”

您的附属财产将如此应用:

<Grid local:MyClass.MyProperty="Value" />

This article about Attached Properties should help