main
1using System;
2using System.Windows;
3
4namespace presentation.windows
5{
6 public interface RegionManager
7 {
8 void region<Control>(Action<Control> configure) where Control : UIElement;
9 }
10}