/V4/PrismLibrary/Desktop/Prism.Tests/Mocks/MockRegionBehavior.cs
# · C# · 38 lines · 18 code · 4 blank · 16 comment · 2 complexity · a5ace3a7480b28339962b8d3c29d6692 MD5 · raw file
- //===================================================================================
- // Microsoft patterns & practices
- // Composite Application Guidance for Windows Presentation Foundation and Silverlight
- //===================================================================================
- // Copyright (c) Microsoft Corporation. All rights reserved.
- // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY
- // OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT
- // LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
- // FITNESS FOR A PARTICULAR PURPOSE.
- //===================================================================================
- // The example companies, organizations, products, domain names,
- // e-mail addresses, logos, people, places, and events depicted
- // herein are fictitious. No association with any real company,
- // organization, product, domain name, email address, logo, person,
- // places, or events is intended or should be inferred.
- //===================================================================================
- using System;
- using Microsoft.Practices.Prism.Regions;
-
- namespace Microsoft.Practices.Prism.Tests.Mocks
- {
- public class MockRegionBehavior : IRegionBehavior
- {
- public IRegion Region
- {
- get; set;
- }
-
- public Func<object> OnAttach;
-
- public void Attach()
- {
- if (OnAttach != null)
- OnAttach();
-
- }
- }
- }