微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

如何绑定文本框和属性?

如何解决如何绑定文本框和属性?

|
<UserControl xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"
    xmlns:x=\"http://schemas.microsoft.com/winfx/2006/xaml\" 
    xmlns:toolkit=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation/toolkit\"
    xmlns:System_Windows_Controls_Primitives=\"clr-namespace:System.Windows.Controls.Primitives;assembly=System.Windows.Controls.Toolkit\"
    x:Class=\"SilverlightApplication5.MainPage\"
    Width=\"640\" Height=\"480\">
    <StackPanel x:Name=\"LayoutRoot\" Background=\"White\">
        <TextBox x:Name=\"tbWidth\" textwrapping=\"Wrap\" 
           Text=\"{Binding Mode=TwoWay,ValidatesOnExceptions=True,Path=RoomWidth}\"/>
        </StackPanel>
</UserControl>
RoomWidth-是属性
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;

namespace SilverlightApplication5
{
    public partial class MainPage : UserControl
    {
        public MainPage()
        {
            InitializeComponent();
        }
        private int roomWidth = 10;
        public int RoomWidth
        {
            get { return roomWidth; }
            set
            {
                if (value < 0 || value > 100)
                {
                    throw new Exception(\"Data not correct\");
                }
                roomWidth = value;
            }
        }

    }
}
我需要将此类添加到绑定源。怎么办     

解决方法

        例如,使用
ElementName
<UserControl xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\" xmlns:x=\"http://schemas.microsoft.com/winfx/2006/xaml\" xmlns:toolkit=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation/toolkit\" xmlns:System_Windows_Controls_Primitives=\"clr-namespace:System.Windows.Controls.Primitives;assembly=System.Windows.Controls.Toolkit\"
    x:Class=\"SilverlightApplication5.MainPage\"
    Width=\"640\" Height=\"480\"
    Name=\"control\">

    <!-- ... -->
    <TextBox Text=\"{Binding ElementName=control,Mode=TwoWay,ValidatesOnExceptions=True,Path=RoomWidth}\" x:Name=\"tbWidth\" TextWrapping=\"Wrap\"/>
如果您对这样的基本绑定有疑问,请仔细阅读。 (WPF /银光)     ,        
DataContext = this;
将其放入您的构造函数中。     

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。