У меня проблемы с привязкой пользовательского элемента управления через мою ViewModel в приложении MVVM Silverlight.Основным элементом управления является форма ввода даты с тремя текстовыми полями.Я использую MVVM, чтобы получить данные текстового поля в трех свойствах, а затем проверить их на Date.
Привязка Ниже управления для MVVM отлично работает для меня:
XAML пользовательского элемента управления: DateControl.xaml
<UserControl x:Class="DatePicker.DateControl"
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">
<Grid x:Name="LayoutRoot" Background="White"
HorizontalAlignment="Center">
<StackPanel Orientation="Horizontal">
<StackPanel Orientation="Horizontal">
<TextBox MaxLength="2" TabIndex="0" Style="{StaticResource BirthDDTextBoxStyle}"
Text="{Binding BirthDay,Mode=TwoWay,ValidatesOnNotifyDataErrors=True, NotifyOnValidationError=True}"/>
<TextBlock Style="{StaticResource TextBlockStyle_DateSeperator}"/>
<TextBox MaxLength="2" TabIndex="1" Style="{StaticResource BirthDDTextBoxStyle}" Text="{Binding BirthMonth, Mode=TwoWay,ValidatesOnNotifyDataErrors=True, NotifyOnValidationError=True}"/>
<TextBlock Style="{StaticResource TextBlockStyle_DateSeperator}"/>
<TextBox MaxLength="4" TabIndex="2" Style="{StaticResource BirthYYTextBoxStyle}" Text="{Binding BirthYear, Mode=TwoWay, ValidatesOnNotifyDataErrors=True, NotifyOnValidationError=True}"/>
<Button Content="Show" Width="100" Height="30" Click="Button_Click"/>
</StackPanel>
</StackPanel>
</Grid>
</UserControl>
DateControlViewModel :
namespace DatePicker
{
public class DatePickerViewModel : EntityViewModel
{
public DatePickerViewModel()
{
}
private DateTime birthDate;
public DateTime BirthDate
{
get
{
return birthDate;
}
set
{
birthDate = value;
}
}
private string birthDay;
public string BirthDay
{
get { return birthDay; }
set
{
birthDay = value;
PropertyChangedHandler("BirthDay");
ValidateBirthDay("BirthDay", value);
}
}
private string birthMonth;
public string BirthMonth
{
get { return birthMonth; }
set
{
birthMonth = value;
PropertyChangedHandler("BirthMonth");
ValidateBirthMonth("BirthMonth", value);
}
}
private string birthYear;
public string BirthYear
{
get { return birthYear; }
set
{
birthYear = value;
PropertyChangedHandler("BirthYear");
ValidateBirthYear("BirthYear", value);
}
}
private void ValidateDOB()
{
ClearErrorFromProperty("BirthDay");
ClearErrorFromProperty("BirthMonth");
ClearErrorFromProperty("BirthYear");
if (string.IsNullOrEmpty(BirthDay))
ValidateBirthDay("BirthDay", BirthDay);
if (string.IsNullOrEmpty(BirthMonth))
ValidateBirthMonth("BirthMonth", BirthMonth);
if (string.IsNullOrEmpty(BirthYear))
ValidateBirthYear("BirthYear", BirthYear);
if (!string.IsNullOrEmpty(BirthDay) && !string.IsNullOrEmpty(BirthMonth) && !string.IsNullOrEmpty(BirthYear))
SetDateOfBirth();
}
private void ValidateBirthDay(string propertyName, string value)
{
ClearErrorFromProperty(propertyName);
if (String.IsNullOrEmpty(value))
AddErrorForProperty(propertyName, "Resources.PatientImport.EmptyDayMessage");
else
if (Common.IsNumber(value))
{
int day = Convert.ToInt32(value);
if (day > 31 || day < 1)
AddErrorForProperty(propertyName, "Resources.PatientImport.InvalidDayMessage");
}
else
AddErrorForProperty(propertyName, "Resources.PatientImport.InvalidDayMessage");
}
private void ValidateBirthMonth(string propertyName, string value)
{
ClearErrorFromProperty(propertyName);
if (String.IsNullOrEmpty(value))
AddErrorForProperty(propertyName, "Resources.PatientImport.EmptyMonthMessage");
else
if (Common.IsNumber(value))
{
int month = Convert.ToInt32(value);
if (month > 12 || month < 1)
AddErrorForProperty(propertyName, "Resources.PatientImport.InvalidMonthMessage");
}
else
AddErrorForProperty(propertyName, "Resources.PatientImport.InvalidMonthMessage");
}
private void ValidateBirthYear(string propertyName, string value)
{
ClearErrorFromProperty(propertyName);
if (String.IsNullOrEmpty(value))
AddErrorForProperty(propertyName, "Resources.PatientImport.EmptyYearMessage");
else
if (Common.IsNumber(value))
{
int year = Convert.ToInt32(value);
if (year.ToString().Length > 4 || year.ToString().Length < 4)
AddErrorForProperty(propertyName, "Resources.PatientImport.InvalidYearMessage");
}
else
AddErrorForProperty(propertyName, "Resources.PatientImport.InvalidYearMessage");
}
private void SetDateOfBirth()
{
string dateString = BirthDay + "-" + BirthMonth + "-" + BirthYear;
DateTime date;
if (!DateTime.TryParse(dateString.ToString(), out date))
{
ClearErrorFromProperty("BirthDay");
ClearErrorFromProperty("BirthMonth");
ClearErrorFromProperty("BirthYear");
AddErrorForProperty("BirthDay", "Resources.PatientImport.InvalidDayMessage");
AddErrorForProperty("BirthMonth", "Resources.PatientImport.InvalidMonthMessage");
AddErrorForProperty("BirthYear", "Resources.PatientImport.InvalidYearMessage");
}
else
BirthDate = date;
}
}
}
Я хочу использовать этот элемент управления в моем MainPage.xaml :
<UserControl x:Class="DatePicker.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"
xmlns:local="clr-namespace:DatePicker"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="400">
<Grid x:Name="LayoutRoot" Background="White">
<local:DateControl />
</Grid>
</UserControl>
Я хочу определить свойство в DateControl, которое я буду использовать для привязки моего UserControl к ViewModel из MainPage.xaml
Что-то вроде:
<Grid x:Name="LayoutRoot" Background="White">
<local:DateControl Date="{Binding BirthDate, Mode=TwoWay, ValidatesOnNotifyDataErrors=True, NotifyOnValidationError=True}"/>
</Grid>
BirthDate - строка Свойство типа.
Как изменить свой usercontrol, чтобы я мог связать его свойство в MainPage.XAML, используя отдельный MVVM