expression-blend

How to edit a c# project in Blend 4 that was created with VS2012?

試著忘記壹切 提交于 2019-12-04 10:09:36
It always says "The solution "foo.sln" is of an unsupported Format and may not open correctly. Do you want to open the solution anyway?" If I click yes, it Shows the solution tree, but when I open a xaml file, it only Displays its xaml text, not the Rendering of the UI. According to this http://blendinsider.com/technical/available-now-blend-for-visual-studio-2012-2012-08-15/ Blend 4 is the way it's meant to work. So something is wrong I guess. I have older Projects created with vs2010 and Blend 4. I can still open and work in them in Blend 4 while working on them in vs2012. Only new Projects

How can I limit builds to only support EN “Microsoft.Expression.Interactions.resources.dll”, and avoid DE, KR, FR, ES, etc…?

末鹿安然 提交于 2019-12-04 08:24:30
问题 When I build my WPF Project, it creates several language folders, each containing "Microsoft.Expression.Interactions.resources.dll". The weird thing is that I never created translations of my resource strings to other languages, and yet it still creates DE, KR, FR, ES folders. What I just need is EN. How can I limit the localization to just EN? 回答1: You're seeing those files because you're using the Blend SDK for .NET (either directly or through the Prism library). That SDK includes localized

Automatically calling OnDetaching() for Silverlight Behaviors

倾然丶 夕夏残阳落幕 提交于 2019-12-04 08:07:56
I am using several Blend behaviors and triggers on a silverlight control. I am wondering if there is any mechanism for automatically detaching or ensuring that OnDetaching() is called for a behavior or trigger when the control is no longer being used (i.e. removed from the visual tree). My problem is that there is a managed memory leak with the control because of one of the behaviors. The behavior subscribes to an event on some long-lived object in the OnAttached() override and should be unsubscribing from that event in the OnDetaching() override so that it can become a candidate for garbage

Evenly Spaced Dashes with StrokeDashArray

别说谁变了你拦得住时间么 提交于 2019-12-04 07:03:07
I'm trying to create a poker chip like the one here: http://www.casinowholesalers.com/shop/product_info.php?cPath=57&products_id=379 using Expression Blend 4 for a WP7.1 Silverlight 4 app. I'm trying to create the six white "boxes" on the edge of the chip (ignoring for now the dice images and inner dashed line). The way I did it was two create two ellipses, one with no stroke, the other is the exact same size but with a stroke of 24, a color of White, and the StrokeDashArray to 1.8 (that's not "1 8", it's actually 1.8 with no second value). It looks pretty close to evenly sized and spaced (but

Designing WPF Windows for Free?

耗尽温柔 提交于 2019-12-04 06:06:43
I'm starting a WPF project in a "free tools" environment. I'm currently working with the designer in Visual C# Express 2008, and directly with the XAML, both of which are very limited in design capabilities. My understanding is that Microsoft Expression Blend is not available for free (except for limited time trial). Is Expression Blend expected to come out in a free Express version anytime soon? If not - are there any alternatives? Thanks No, there is no free version of expression blend (apart from the time limited trial), and there hasn't been any announcement of anything planned. Several

Smooth animation in expression blend for window store apps from png images

ε祈祈猫儿з 提交于 2019-12-04 06:05:09
问题 I want to make animation in Expression Blend for Windows Store Apps as .gif images are not supported. So I have approx 30 png images. I made a storyboard animation in Blend by changing the image source after every 2 sec in timeline. But when it plays, it is not a smooth animation. It looks just as changing images and not like animation. Is there any way to make smooth animation with images? 回答1: So as requested, a quick (VERY quick, like took me about 2 minutes) example of a stick figure

Expression Blend: Why do I not have options for Transitions and Easing?

点点圈 提交于 2019-12-04 05:30:53
问题 I am using Expression Blend 4 with .Net 3.5 In the image below, there are options for Transition Effects and the ability to choose Easing effects for your transitions: My Blend interface does not have these on my WPF application: However, if I create a new application (such as a WPF Sketchflow app) these options appear just as they do in the first photo. What determines whether or not these options appear, and how can I get them into my WPF application? 回答1: I think you need the WPF toolkit

How to Reverse WPF Storyboard animation?

有些话、适合烂在心里 提交于 2019-12-04 02:40:35
I've created a WPF Storyboard animation on an image in Expression Blend 4. On hover, the image gradually blurs. Is there any way I can have the Storyboard be undone or reversed when the mouse leaves the image? I could make it trigger Storyboard.Remove() but that wouldn't actually play through the Storyboard backwards. Is there any way I can accomplish that within Expression Blend 4? Since you are using Blend, you should take advantage of Blend's support for the VisualStateManager . All you have to do is describe what the object looks like in its various states, like MouseOver and Normal and

Blend “Window is not supported in a WPF Project”

依然范特西╮ 提交于 2019-12-03 23:26:19
I am having a frustrating time with Blend reporting "Window is not supported in a Windows Presentation Foundation (WPF) project." due to unbuildable configurations but can't quite work out how to mangle my way out of it. I've worked out it is probably due to my trying to have a single solution with x86 and x64 configurations. There is no way to tell Blend 2 which is the active Solution Configuration and active Solution Platform . I think it's a bit of a weakness in the configuration system, or maybe the way I've set things up, but I have Debug64 and Debug solution configurations one of each is

Remove default mouseover/focus effect on textboxes

余生颓废 提交于 2019-12-03 22:58:03
I have created a kind of custom TextBox in Expression Blend. I have changed the fill of the background and border to a gradient, and added in a Shadow Effect. I've noticed that when I mouseover or focus my TextBox , some default behavior/(style?) of WPF takes over and my border is changed. I was wondering if there was anyway to prevent or stop WPF from changing my TextBox es style when I focus or mouseover it. Is this possible? Grant Thomas Does you custom style set the OverridesDefaultStyle property to true ? I believe this should prevent default values being drawn from the default style. If