aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.DB/Properties/Resources.Designer.cs
blob: 02b7b332ea5d1117597b42bc945b44b004dabbe2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
//------------------------------------------------------------------------------
// <auto-generated>
//     This code was generated by a tool.
//     Runtime Version:4.0.30319.42000
//
//     Changes to this file may cause incorrect behavior and will be lost if
//     the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------

namespace Tango.MachineStudio.DB.Properties {
    
    
    /// <summary>
    ///   A strongly-typed resource class, for looking up localized strings, etc.
    /// </summary>
    // This class was auto-generated by the StronglyTypedResourceBuilder
    // class via a tool like ResGen or Visual Studio.
    // To add or remove a member, edit your .ResX file then rerun ResGen
    // with the /str option, or rebuild your VS project.
    [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
    [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
    internal class Resources {
        
        private static global::System.Resources.ResourceManager resourceMan;
        
        private static global::System.Globalization.CultureInfo resourceCulture;
        
        [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
        internal Resources() {
        }
        
        /// <summary>
        ///   Returns the cached ResourceManager instance used by this class.
        /// </summary>
        [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
        internal static global::System.Resources.ResourceManager ResourceManager {
            get {
                if ((resourceMan == null)) {
                    global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Tango.MachineStudio.DB.Properties.Resources", typeof(Resources).Assembly);
                    resourceMan = temp;
                }
                return resourceMan;
            }
        }
        
        /// <summary>
        ///   Overrides the current thread's CurrentUICulture property for all
        ///   resource lookups using this strongly typed resource class.
        /// </summary>
        [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
        internal static global::System.Globalization.CultureInfo Culture {
            get {
                return resourceCulture;
            }
            set {
                resourceCulture = value;
            }
        }
    }
}
class="w"> /// Gets the collection of taskbar items. /// </summary> ObservableCollection<TaskBarItem> TaskBarItems { get; } /// <summary> /// Gets the application bar items. /// </summary> ObservableCollection<AppBarItem> AppBarItems { get; } /// <summary> /// Gets a value indicating whether this instance has any application bar items. /// </summary> bool HasAppBarItems { get; } /// <summary> /// Gets a value indicating whether this instance has notification items. /// </summary> bool HasNotificationItems { get; } /// <summary> /// Gets the current message box. /// </summary> MessageBoxVM CurrentMessageBox { get; } /// <summary> /// Gets a value indicating whether this instance has message box. /// </summary> bool HasMessageBox { get; } /// <summary> /// Gets the current dialog. /// </summary> FrameworkElement CurrentDialog { get; } /// <summary> /// Gets the current app button. /// </summary> AppButton CurrentAppButton { get; } /// <summary> /// Gets a value indicating whether this instance has a dialog. /// </summary> bool HasDialog { get; } /// <summary> /// Shows an information message box. /// </summary> /// <param name="message">The message.</param> Task ShowInfo(String message); /// <summary> /// Shows warning message box. /// </summary> /// <param name="message">The message.</param> Task ShowWarning(String message); /// <summary> /// Shows an error message box. /// </summary> /// <param name="message">The message.</param> Task ShowError(String message); /// <summary> /// Shows a success message box. /// </summary> /// <param name="message">The message.</param> Task ShowSuccess(String message); /// <summary> /// Shows a question message box. /// </summary> /// <param name="message">The message.</param> Task<bool> ShowQuestion(String message); /// <summary> /// Inserts the notification item to the bottom of the notifications collection. /// </summary> /// <param name="item">The item.</param> NotificationItem PushNotification(NotificationItem item); /// <summary> /// Pushes the notification. /// </summary> /// <typeparam name="T"></typeparam> /// <returns></returns> NotificationItem PushNotification<T>() where T : NotificationItem; /// <summary> /// Displays the specified dialog in a modal design. /// </summary> /// <typeparam name="VM"></typeparam> /// <param name="datacontext">The data context.</param> /// <param name="view">The view.</param> /// <returns></returns> Task<VM> ShowDialog<VM>(VM datacontext, FrameworkElement view) where VM : DialogViewVM; /// <summary> /// Displays the specified dialog in a modal design. /// The notification provider will try to locate the view automatically using conventions. /// </summary> /// <typeparam name="VM"></typeparam> /// <param name="datacontext">The data context.</param> /// <returns></returns> Task<VM> ShowDialog<VM>(VM datacontext) where VM : DialogViewVM; /// <summary> /// Displays the specified dialog in a modal design. /// The data context instance will be automatically created. /// The notification provider will try to locate the view automatically using conventions. /// </summary> /// <typeparam name="VM"></typeparam> /// <returns></returns> Task<VM> ShowDialog<VM>() where VM : DialogViewVM; /// <summary> /// Removed the specified notification item. /// </summary> /// <param name="item">The item.</param> void PopNotification(NotificationItem item); /// <summary> /// Gets a value indicating whether this instance is in global busy state. /// </summary> bool IsInGlobalBusyState { get; } /// <summary> /// Sets the global busy message. /// </summary> /// <param name="message">The message.</param> void SetGlobalBusyMessage(String message); /// <summary> /// Releases the global busy message. /// </summary> void ReleaseGlobalBusyMessage(); /// <summary> /// Gets the current global busy message. /// </summary> String GlobalBusyMessage { get; } /// <summary> /// Pushes the application bar item. /// </summary> /// <param name="appBarItem">The application bar item.</param> /// <returns></returns> AppBarItem PushAppBarItem(AppBarItem appBarItem); /// <summary> /// Pushes the application bar item. /// </summary> /// <typeparam name="T"></typeparam> /// <returns></returns> T PushAppBarItem<T>() where T : AppBarItem; /// <summary> /// Pops the application bar item. /// </summary> /// <param name="appBarItem">The application bar item.</param> void PopAppBarItem(AppBarItem appBarItem); /// <summary> /// Pushes the task bar item. /// </summary> /// <param name="taskBarItem">The task bar item.</param> /// <returns></returns> TaskBarItem PushTaskBarItem(TaskBarItem taskBarItem); /// <summary> /// Handles the Push Task Bar Item event. /// </summary> /// <typeparam name="T"></typeparam> /// <returns></returns> TaskBarItem PushTaskBarItem<T>() where T : TaskBarItem; /// <summary> /// Pops the task bar item. /// </summary> /// <param name="TaskBarItem">The task bar item.</param> void PopTaskBarItem(TaskBarItem taskBarItem); /// <summary> /// Gets or sets a value indicating whether to allow notifications visibility. /// </summary> bool NotificationsVisible { get; set; } /// <summary> /// Pushes the app button. /// </summary> /// <param name="appButton">The app button.</param> void PushAppButton(AppButton appButton); /// <summary> /// Pops the app button. /// </summary> /// <param name="appButton">The app button.</param> void PopAppButton(AppButton appButton); } }