I am guessing there is no way to Bind call SharpSVN in a WPF application? I was just following there tutorial, and I found out that you can't bind becuase this isn't a Windows.Forms application. Quite the bummer. I was really cooking there for a minute.
相关问题
- VNC control for WPF application
- WPF Binding from System.Windows.SystemParameters.P
- XAML: Applying styles to nested controls
- How can I add a horizontal line (“goal line”) for
- How to properly change a resource dictionary
Currently the answer is: No.
For compatibility SharpSvn is compiled against .Net 2.0, so doesn't have access to the WPF classes.
You could implement your own IWin32Window to provide a Hwnd.
Googling a bit provided me this sample code.