1

我是一个在 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 指令或程序集引用?)

现在,如果此代码有效,据我了解,附加属性将仅对我的类的 objetc 可用...您如何绑定 xaml 元素和 ac#class?

如果您看到我想去的地方,您所拥有的任何信息将不胜感激。我已经花了几个小时在这个小细节上......

提前谢谢了!!!!!!!!!!!!!(是的,我是一个菜鸟......我有一些订购的 c#books 即将推出,我检查了许多网站但仍然需要指导......再次感谢)

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

xmlns:local="clr-namespace:MyNamespace" 给了我这个错误:

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

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

在椭圆类型中找不到 Property'MyProperty'。

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

4

1 回答 1

0

在大多数情况下,一切看起来都很好。您只需要更改FrameworkPropertyMetadataPropertyMetadata,代码应该可以正常编译。

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

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

本文详细介绍了 Silverlight 中的 xaml 命名空间

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

外壳:SystemTray.IsVisible="True"

您的附加属性将像这样应用:

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

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

于 2013-02-11T22:19:39.223 回答