Files
BeWoPlaner/BeWo/View/Search/ResourceSearchView.cs

18 lines
375 B
C#
Raw Normal View History

2016-06-27 01:45:38 +02:00
using System.ComponentModel;
using System.Windows.Media;
using BS.Shared.DataContracts;
namespace BeWo.View.Search
{
public class ResourceSearchView : GenericSearchView<ResourceDC>
{
public ResourceSearchView()
{
if (!DesignerProperties.GetIsInDesignMode(this))
{
ThemeColor = FindResource("ResourceContentBrush") as Brush;
}
}
}
}