diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2019-10-27 12:09:07 +0200 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2019-10-27 12:09:07 +0200 |
| commit | 312e8ccad554d6d0e7d21444e069731e770db978 (patch) | |
| tree | d20a3657dab87de400675f5f8aca77c0f124b2bd /Software/Visual_Studio/Tango.Touch/Controls/TouchPanel.cs | |
| parent | 4954a924b8a5b8fd7a213a444027e74b936359be (diff) | |
| download | Tango-312e8ccad554d6d0e7d21444e069731e770db978.tar.gz Tango-312e8ccad554d6d0e7d21444e069731e770db978.zip | |
Added DEVICE_ID, DEVICE_NAME & IS_DEVICE_REGISTERED fields to db.
Prevent multiple machine setup from different devices.
Moved notification to inner layout on PPC.
Improved PPC notification bar.
Added more machine status support from embedded.
FIxed issue with external bridge and emergency pressed.
Diffstat (limited to 'Software/Visual_Studio/Tango.Touch/Controls/TouchPanel.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.Touch/Controls/TouchPanel.cs | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/Software/Visual_Studio/Tango.Touch/Controls/TouchPanel.cs b/Software/Visual_Studio/Tango.Touch/Controls/TouchPanel.cs index bb715abba..6aa92d15e 100644 --- a/Software/Visual_Studio/Tango.Touch/Controls/TouchPanel.cs +++ b/Software/Visual_Studio/Tango.Touch/Controls/TouchPanel.cs @@ -208,38 +208,6 @@ namespace Tango.Touch.Controls public static readonly DependencyProperty CurrentDialogProperty = DependencyProperty.Register("CurrentDialog", typeof(FrameworkElement), typeof(TouchPanel), new PropertyMetadata(null)); - public bool HasNotifications - { - get { return (bool)GetValue(HasNotificationsProperty); } - set { SetValue(HasNotificationsProperty, value); } - } - public static readonly DependencyProperty HasNotificationsProperty = - DependencyProperty.Register("HasNotifications", typeof(bool), typeof(TouchPanel), new PropertyMetadata(false)); - - public IList Notifications - { - get { return (IList)GetValue(NotificationsProperty); } - set { SetValue(NotificationsProperty, value); } - } - public static readonly DependencyProperty NotificationsProperty = - DependencyProperty.Register("Notifications", typeof(IList), typeof(TouchPanel), new PropertyMetadata(null)); - - public DataTemplate NotificationTemplate - { - get { return (DataTemplate)GetValue(NotificationTemplateProperty); } - set { SetValue(NotificationTemplateProperty, value); } - } - public static readonly DependencyProperty NotificationTemplateProperty = - DependencyProperty.Register("NotificationTemplate", typeof(DataTemplate), typeof(TouchPanel), new PropertyMetadata(null)); - - public String ItemExpandedPropertyPath - { - get { return (String)GetValue(ItemExpandedPropertyPathProperty); } - set { SetValue(ItemExpandedPropertyPathProperty, value); } - } - public static readonly DependencyProperty ItemExpandedPropertyPathProperty = - DependencyProperty.Register("ItemExpandedPropertyPath", typeof(String), typeof(TouchPanel), new PropertyMetadata(null)); - public FrameworkElement TaskBarElement { get { return (FrameworkElement)GetValue(TaskBarElementProperty); } @@ -248,14 +216,6 @@ namespace Tango.Touch.Controls public static readonly DependencyProperty TaskBarElementProperty = DependencyProperty.Register("TaskBarElement", typeof(FrameworkElement), typeof(TouchPanel), new PropertyMetadata(null)); - public Visibility NotificationBarVisibility - { - get { return (Visibility)GetValue(NotificationBarVisibilityProperty); } - set { SetValue(NotificationBarVisibilityProperty, value); } - } - public static readonly DependencyProperty NotificationBarVisibilityProperty = - DependencyProperty.Register("NotificationBarVisibility", typeof(Visibility), typeof(TouchPanel), new PropertyMetadata(Visibility.Visible)); - public bool IsBusy { get { return (bool)GetValue(IsBusyProperty); } |
