// ----------------------------------------------------------------------- // // Copyright 2013 MIT Licence. See licence.md for more information. // // ----------------------------------------------------------------------- namespace Perspex.Controls { using System; public class Button : ContentControl { public Button() { this.GetObservable(MouseLeftButtonDownEvent).Subscribe(e => { this.Classes.Add(":pressed"); }); this.GetObservable(MouseLeftButtonUpEvent).Subscribe(e => { this.Classes.Remove(":pressed"); }); } } }