Итак, я пытаюсь сделать календарь wpf, но у меня проблема с методами GetValue () и SetValue ().Я объявил все библиотеки, и это показывает мне, что эти методы вообще не существуют и не распознают их.
using System;
using System.Collections.ObjectModel;
using System.ComponentModel;
using System.Windows;
using System.Windows.Controls;
using System.Reflection;
namespace CustomControls
{
public class Calendar : Control
{
public ObservableCollection<Day> Days { get; set; }
public ObservableCollection<string> DayNames { get; set; }
public static readonly DependencyProperty CurrentDateProperty = DependencyProperty.Register("CurrentDate", typeof (DateTime), typeof (Calendar));
public event EventHandler<DayChangedEventArgs> DayChanged;
public DateTime CurrentDate
{
get { return (DateTime) GetValue(CurrentDateProperty); }
set { SetValue(CurrentDateProperty, value); }
}
}
}
Надеюсь, вы могли бы помочь мне и поблагодарить вас заранее!