TessaApplication - класс

Приложение WPF, использующее сессию Tessa.

Definition

Пространство имён: Tessa.UI
Сборка: Tessa.UI (в Tessa.UI.dll) Версия: 3.6.0.22
C#
public abstract class TessaApplication : Application
Inheritance
Object    DispatcherObject    Application    TessaApplication

Конструкторы

TessaApplicationИнициализирует новый экземпляр класса TessaApplication

Свойства

Application Текущее запущенное приложение или null, если приложение ещё не было запущено или было завершено.
DispatcherGets the Dispatcher this DispatcherObject is associated with.
(Унаследован от DispatcherObject)
IsLaunched Признак того, что приложение было успешно запущено.
LauncherSplash Содержит отображаемое при загрузке приложения окно
MainWindowGets or sets the main window of the application.
(Унаследован от Application)
PropertiesGets a collection of application-scope properties.
(Унаследован от Application)
PublishModeByDefault Признак того, что приложение по умолчанию запускается всегда в режиме публикации, даже без параметра /publish. Требуется для того, чтобы определить, выполняет ли приложение публикацию в "тихом" режиме.
ResourcesGets or sets a collection of application-scope resources, such as styles and brushes.
(Унаследован от Application)
ShutdownModeGets or sets the condition that causes the Shutdown method to be called.
(Унаследован от Application)
StartupUriGets or sets a UI that is automatically shown when an application starts.
(Унаследован от Application)
ThemeWindowTypes Нестандартные типы окон, не являющиеся наследниками TessaWindow. Значение может быть равно null, если такие типы отсутствуют. Изменять значение свойства необходимо перед вызовом метода OnStartup(StartupEventArgs), например, в конструкторе.
UnityContainer Текущий используемый контейнер Unity или null, если приложение ещё не было запущено, было завершено или не связано с контейнером.
WindowsGets the instantiated windows in an application.
(Унаследован от Application)

Методы

ActivateShell Активирует главное окно по умолчанию. Стандартной реализации, которая активирует окно MainWindow, достаточно для обычных окон.
CheckAccessDetermines whether the calling thread has access to this DispatcherObject.
(Унаследован от DispatcherObject)
FindResourceSearches for a user interface (UI) resource, such as a Style or Brush, with the specified key, and throws an exception if the requested resource is not found (see XAML Resources).
(Унаследован от Application)
OnActivatedRaises the Activated event.
(Унаследован от Application)
OnApplicationExitAsync Переопределите метод для того, чтобы выполнить дополнительные действия по завершению работы приложения. Если специальных действий выполнять не требуется, то переопределять метод не рекомендуется.
OnApplicationStartupAsync Переопределите метод для того, чтобы запустить приложение и установить свойства Application и UnityContainer.
OnDeactivatedRaises the Deactivated event.
(Унаследован от Application)
OnExit Стандартный обработчик завершения приложения.
(Переопределяет ApplicationOnExit(ExitEventArgs))
OnFragmentNavigationRaises the FragmentNavigation event.
(Унаследован от Application)
OnLoadCompletedRaises the LoadCompleted event.
(Унаследован от Application)
OnNavigatedRaises the Navigated event.
(Унаследован от Application)
OnNavigatingRaises the Navigating event.
(Унаследован от Application)
OnNavigationFailedRaises the NavigationFailed event.
(Унаследован от Application)
OnNavigationProgressRaises the NavigationProgress event.
(Унаследован от Application)
OnNavigationStoppedRaises the NavigationStopped event.
(Унаследован от Application)
OnSessionEndingRaises the SessionEnding event.
(Унаследован от Application)
OnStartup Стандартный обработчик запуска приложения.
(Переопределяет ApplicationOnStartup(StartupEventArgs))
RunStarts a Windows Presentation Foundation application.
(Унаследован от Application)
Run(Window)Starts a Windows Presentation Foundation application and opens the specified window.
(Унаследован от Application)
ShutdownShuts down an application.
(Унаследован от Application)
Shutdown(Int32)Shuts down an application that returns the specified exit code to the operating system.
(Унаследован от Application)
TryCreateLauncherSplash Метод, создающий сплэш, отображаемый при запуске и инициализации приложения, или null, если сплэш не должен отображаться.
TryFindResourceSearches for the specified resource.
(Унаследован от Application)
VerifyAccessEnforces that the calling thread has access to this DispatcherObject.
(Унаследован от DispatcherObject)

События

ActivatedOccurs when an application becomes the foreground application.
(Унаследован от Application)
DeactivatedOccurs when an application stops being the foreground application.
(Унаследован от Application)
DispatcherUnhandledExceptionOccurs when an exception is thrown by an application but not handled.
(Унаследован от Application)
ExitOccurs just before an application shuts down and cannot be canceled.
(Унаследован от Application)
FragmentNavigationOccurs when a navigator in the application begins navigation to a content fragment, Navigation occurs immediately if the desired fragment is in the current content, or after the source XAML content has been loaded if the desired fragment is in different content.
(Унаследован от Application)
LoadCompletedOccurs when content that was navigated to by a navigator in the application has been loaded, parsed, and has begun rendering.
(Унаследован от Application)
NavigatedOccurs when the content that is being navigated to by a navigator in the application has been found, although it may not have completed loading.
(Унаследован от Application)
NavigatingOccurs when a new navigation is requested by a navigator in the application.
(Унаследован от Application)
NavigationFailedOccurs when an error occurs while a navigator in the application is navigating to the requested content.
(Унаследован от Application)
NavigationProgressOccurs periodically during a download that is being managed by a navigator in the application to provide navigation progress information.
(Унаследован от Application)
NavigationStoppedOccurs when the StopLoading method of a navigator in the application is called, or when a new navigation is requested by a navigator while a current navigation is in progress.
(Унаследован от Application)
SessionEndingOccurs when the user ends the Windows session by logging off or shutting down the operating system.
(Унаследован от Application)
StartupOccurs when the Run method of the Application object is called.
(Унаследован от Application)

См. также