123456789101112131415161718192021222324252627282930313233343536 |
- using Caliburn.Micro;
- using MECF.Framework.Common.DataCenter;
- using MECF.Framework.UI.Client.CenterViews.Dialogs;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows;
- using System.Windows.Controls;
- using System.Windows.Input;
- namespace MECF.Framework.UI.Client.Themes.OceanBlue
- {
- public partial class ButtonEx : ResourceDictionary
- {
- //public void PreviewMouseLeftButtonUp(object sender, MouseButtonEventArgs e)
- //{
- // if (e.StylusDevice != null)
- // {
- // e.Handled = true;
- // }
- // else
- // {
- // // ((Button)sender). PreviewTouchUp(sender,null);
- // }
- //}
- //public void PreviewTouchUp(object sender, TouchEventArgs e)
- //{
-
- //}
- }
- }
|