blob: efc959a560bf53122c1f1b32d9ad89c82d531bb1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Media;
namespace Tango.Touch.Controls
{
public interface ITouchControl
{
bool EnableDropShadow { get; set; }
double BlurRadius { get; set; }
double ShadowDepth { get; set; }
Color ShadowColor { get; set; }
}
}
|