main
 1using System;
 2using System.Windows;
 3using gorilla.utility;
 4
 5namespace solidware.financials.windows.ui
 6{
 7    public interface RegionManager
 8    {
 9        void region<Region>(Action<Region> configure) where Region : UIElement;
10        void region<Region>(Configuration<Region> configure) where Region : UIElement;
11    }
12}