Код: Выделить всё
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace textbtn
{
public class CustomControl1 : Control
{
static CustomControl1()
{
DefaultStyleKeyProperty.OverrideMetadata(typeof(CustomControl1), new FrameworkPropertyMetadata(typeof(CustomControl1)));
}
private void button1_Click(object sender, RoutedEventArgs e)
{
//if (test.Width > 50)
// test.Width = 0;
//else
// test.Width = 100;
}
}
}
Код: Выделить всё
Ошибка 1 Отсутствует частичный модификатор в объявлении типа 'textbtn.CustomControl1'; существует еще одно частичное объявление этого типа
Подробнее здесь: https://stackoverflow.com/questions/230 ... om-control