expression-blend-4

How to reuse icons (xaml-paths) in a large project?

南笙酒味 提交于 2019-11-30 05:25:36
I am part of the development of a larger-scale Silverlight 4 project, where we will have a set of symbols that should be used across different parts of the GUI (see the example below). These icons are made from multiple paths directly in Blend, and will be used, either singly or as different visual states in usercontrols (with the same icon used in more than one context). In order to facilitate changing the design of a single icon, and having it propagate throughout the application, what is the best way to store these? I have tried creating styles from them (right click -> edit style..), but

Visual Studio 2010 WPF Project ran in debug or release will not allow drag and drop to any control

夙愿已清 提交于 2019-11-29 13:39:49
I had started a question here: WPF drag and drop files onto TreeView from windows explorer but I just discovered this is a totally different problem that what I thought it was. I have an extremely simple test case. I was using a treeview but if I use a simple listbox with no code just the following xaml <StackPanel Orientation="Vertical"> <ListBox Height="312" Background="#FFBDD6FF" AllowDrop="True"/> </StackPanel> If I run the project in expression blend and drag a file over the listbox I see the arrow and the little square below it that incdicates you can drag and drop. If I run the same

How to reuse icons (xaml-paths) in a large project?

一笑奈何 提交于 2019-11-29 03:43:00
问题 I am part of the development of a larger-scale Silverlight 4 project, where we will have a set of symbols that should be used across different parts of the GUI (see the example below). These icons are made from multiple paths directly in Blend, and will be used, either singly or as different visual states in usercontrols (with the same icon used in more than one context). In order to facilitate changing the design of a single icon, and having it propagate throughout the application, what is

Expression Blend: Getting error “XXX” does not exist in the namespace “XXX”, but not in VS2008

你离开我真会死。 提交于 2019-11-28 18:48:39
问题 I am trying to use Blend 3.0 to edit a project that contains some WPF controls. This project already compiles and runs fine from Visual Studio 2008. In Blend however, I'm getting mysterious errors that make no sense: For example, I have a class that derives from Control : namespace Company.WPFControls.SearchTextBox { public class SearchTextBox : Control { ... } } And I try to use it in a resource, in the same assembly, to assign a style: <ResourceDictionary xmlns="http://schemas.microsoft.com