blob: 92ae58d59a257dcb206d0efb164c163d54db0aa2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
internal static class DependencyObjectExtensions
{
public static bool IsInDesignMode(this DependencyObject obj)
{
return (DesignerProperties.GetIsInDesignMode(obj));
}
}
|