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