コード例 #1
0
ファイル: DelayedCall.cs プロジェクト: ucswift/Sleuth
 public DelayedCall(DelayedHandler handler, DispatcherPriority priority)
 {
     _handler = handler;
     _priority = priority;
 }
コード例 #2
0
ファイル: DelayedCall.cs プロジェクト: chrkon/snoopwpf
 public DelayedCall(DelayedHandler handler, DispatcherPriority priority)
 {
     this.handler  = handler;
     this.priority = priority;
 }
コード例 #3
0
 public DelayedCall(DelayedHandler handler, DispatcherPriority priority)
 {
     _handler  = handler;
     _priority = priority;
 }
コード例 #4
0
ファイル: DelayedCall.cs プロジェクト: JonGonard/snoopwpf
		public DelayedCall(DelayedHandler handler, DispatcherPriority priority)
		{
			this.handler = handler;
			this.priority = priority;
		}