[ create a new paste ] login | about

Link: http://codepad.org/YXP49As8    [ raw code | fork ]

C++, pasted on May 5:
1
2
3
4
5
6
7
8
9
10
11
12
13
using System.Windows;
using System.Windows.Controls;

namespace FooEditEngine.WPF
{
    public class FooTextBox : Control
    {
        static FooTextBox()
        {
            DefaultStyleKeyProperty.OverrideMetadata(typeof(FooTextBox), new FrameworkPropertyMetadata(typeof(FooTextBox)));
        }
    }
}


Create a new paste based on this one


Comments: