Testing Copy Source as HTML
How well does this work with Live Writer? (got the CopySource settings from here)
public partial class Window1 : Window
{
public Window1()
{ InitializeComponent();
TopPanel.MouseLeftButtonDown += new MouseButtonEventHandler(TopPanel_MouseLeftButtonDown);
}
void TopPanel_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
{ DragMove();
}
public void CloseWindow(object sender, EventArgs e)
{ this.Close();
}
}
Just some sample WPF code that I'm playing with. Seems to work pretty well with Live Writer.