Hot answers tagged blend
6
Install the Visual Studio 2012 Update 2. Download here. It allows to create Silverlight and WPF applications with Blend for VS 2012.
1
In the codebehind of your UserControl, define dependency properties for the brushes you want to use in your template.
public static readonly DependencyProperty ThumbnailBrushProperty =
DependencyProperty.Register("Command", typeof (Brush), typeof (YourControl), new PropertyMetadata(default(Brush)));
This property will show up in the VS ...
1
Based on the comments above it seems your MainWindow is created dynamically somewhere, however you can use the Application class to get the applications MainWindow.
var mainWindow = Application.Current.MainWindow;
And you can then set your border style from there
Example:
private void RemoveBorder()
{
var mainWindow = Application.Current.MainWindow;
...
Only top voted, non community-wiki answers of a minimum length are eligible