Skip to content

Instantly share code, notes, and snippets.

@winkel
winkel / AsyncHelpers.cs
Created January 9, 2014 13:02
AsyncHelpers wykonywanie metody asynchronicznej synchronicznie
using System;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
//http://social.msdn.microsoft.com/Forums/en-US/163ef755-ff7b-4ea5-b226-bbe8ef5f4796/is-there-a-pattern-for-calling-an-async-method-synchronously?forum=async
namespace ACME
{
public static class AsyncHelpers
{
@winkel
winkel / WatermarkAdorner.cs
Created February 15, 2014 17:31
WPF Watermark as adoner
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Media;
/// <summary>
/// Adorner for the watermark
/// </summary>
internal class WatermarkAdorner : Adorner