仍然可以';不要在windows手机的silverlight中使用附加属性

本文关键字:silverlight 手机 属性 windows | 更新日期: 2023-09-27 17:58:47

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

我在stackoverflow(向XAML中的元素添加自定义属性?)上找到了一个简单的例子,但没有成功。然后我到处读了很多文档,感觉比以往任何时候都更困惑。。。我认为我的概念是对的,但我的实现不是。例如,如果我只是从我提到的页面上复制代码,我会得到:

主页.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>

主页.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指令或程序集引用?)

现在,如果这个代码有效,根据我的理解,所附的属性将只对我类的objet可用。。。如何绑定xaml元素和c类?

如果你知道我想去哪里,我们将不胜感激。我已经花了几个小时在这个小细节上。。。

非常感谢!!!!!!!!!!!!!(是的,我是一个noob…我订购了一些即将到来的c#书籍,我检查了许多网站,但仍然需要指导…再次感谢)

编辑:后续:给我的建议奏效了,让我编译,但:

xmlns:local="clr-namespace:MyNamespace"给出了以下错误:

未定义的CLR命名空间。"clr namespace"URI引用了未包含在程序集中的命名空间"MyNamespace"。我需要那条线吗?

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

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

我知道我为MyClass注册了"MyProperty"。那么,我如何给椭圆一个"MyClass"的类呢?我应该采取另一种方法吗?我可以在任何我想要的东西上使用"MyProperty"吗?非常感谢任何提示,谢谢!

仍然可以';不要在windows手机的silverlight中使用附加属性

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

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

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

本文提供了关于Silverlight 中xaml命名空间的更多信息

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

shell:SystemTray.IsVisible="True"

您的附加财产将按如下方式应用:

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

这篇关于附加属性的文章应该有助于