Questions tagged [blend]

Microsoft Blend for Visual Studio (formerly Microsoft Expression Blend) is a user interface design tool developed and sold by Microsoft for creating graphical interfaces for web and desktop applications that blend the features of these two types of applications.

Microsoft Blend for Visual Studio (formerly Microsoft Expression Blend) is a user interface design tool developed and sold by Microsoft for creating graphical interfaces for web and desktop applications that blend the features of these two types of applications. It is an interactive, WYSIWYG front-end for designing XAML-based interfaces for Windows Presentation Foundation and Silverlight applications. It was one of the applications in the Microsoft Expression Studio suite before that suite was discontinued.

764 questions
10
votes
1 answer

E_UNEXPECTED UWP Catastrophic Failure

I am getting the following: Catastrophic failure (Exception from HRESULT: 0x8000FFFF (E_UNEXPECTED)) when the ListView attribute is set to Null in the Visual State. It makes no sense, why does VS and Blend complain?
phm
  • 1,160
  • 1
  • 17
  • 29
10
votes
1 answer

CIFilter: Blend different size images

I'm using CISourceOverCompositing to blend two images. It works ok with same size images with this code: CIFIlter *filter1 = [CIFilter filterWithName: @"CISourceOverCompositing"]; [filter1 setDefaults]; [filter1 setValue: imageForeground forKey:…
Ferran T.
  • 242
  • 3
  • 12
9
votes
1 answer

Solve performance issue with WPF application

I've made a list of everything that can helps to improve performance in a very complex application with a lot of controls. If you want to add yours, your welcome! If you know the size of the control, remove the Auto and enter the real value, so the…
mlemay
  • 1,622
  • 2
  • 32
  • 53
9
votes
3 answers

Python PIL - function to divide blend two images?

EDIT: Code is working now, thanks to Mark and zephyr. zephyr also has two alternate working solutions below. I want to divide blend two images with PIL. I found ImageChops.multiply(image1, image2) but I couldn't find a similar divide(image, image2)…
moski
  • 279
  • 1
  • 4
  • 10
9
votes
2 answers

Design View is not opening in Blend 2013

I saw set of people have the same problem and I tried some it, But I do not know why I still cannot see the design view!! The output type is Windows Application. Design view is working properly in VS 2013. I created this project using MVVM Light…
bunjeeb
  • 1,096
  • 1
  • 17
  • 32
9
votes
3 answers

Visual Studio 2012 XAML designer doesn't seem to update

I seem to have a sudden issue with my XAML Designer view in VS2012, and a similar behavior in Blend as well. the view has stopped updating and I'm unable to see any changes immediately if I change any properties. if I scroll or Pan, the Phone chrome…
Jay Kannan
  • 1,372
  • 3
  • 14
  • 30
9
votes
6 answers

How to fix New Project empty list in Blend for Visual Studio 2012 RC?

I have just installed Visual Studio 2012 RC that come with Blend standalone version. When I start a new project the list is empty, there are no templates to choose from. Do you have any idea how to solve the problem?
Drake
  • 8,225
  • 15
  • 71
  • 104
8
votes
1 answer

Poor results with source-over alpha blending (HTML5 canvas)

Edit: I don't necessarily need a solution to this problem--rather I'd like to understand why it's occurring. I don't see why I should be getting the odd results below... Although this question is directed towards an issue I'm having with an HTML5…
Xenethyl
  • 3,179
  • 21
  • 31
8
votes
1 answer

FFmpeg: Add alpha channel to a video using a PNG mask

I saw that FFmpeg can merge/blend two videos with alpha channel and can encode video with alpha channel using the qtrle codec, but, It is possible to apply a PNG file mask, either a black and white or a PNG with an alpha channel to a video in order…
Rodrigo Polo
  • 4,314
  • 2
  • 26
  • 32
8
votes
1 answer

option is not coming for applying beahviour

I have been trying to implement a behavior on a wpf window therefore I have added reference to System.Winodws.Interactivity in my current solution and then wrote the desired behavior. but in order to apply this behavior, I have to write something…
Yogesh
  • 3,044
  • 8
  • 33
  • 60
8
votes
2 answers

How do I scroll a ScrollViewer in Design Time in Blend

I haven't found Information for this problem for Blend / WPF yet. Just for Eclipse and this won't help. I am currently designing a WPF 4 Application Dialog. It should be a ScrollViewer with different Elements within a StackPanel:
Dennis Alexander
  • 861
  • 1
  • 11
  • 26
8
votes
3 answers

Blend mode on a transparent and semi transparent background

In general, the "normal" blend mode equation looks like this: D = Sa * S + D * (1.0 - Sa) where D is destination color, Sa is source alpha and S is source color. Now, this works fine with fully opaque destination but I'd like to know how you would…
Nicolas Goy
8
votes
3 answers

VS2012/ Blend 5: Debugging an Exception (only) occurring in design view

I'm developing a Metro-style app (for Windows 8) using C# and XAML. I have set up my viewmodels to be used as design-time datacontexts, like so: xmlns:vm="using:hub.ViewModels" d:DataContext="{d:DesignInstance IsDesignTimeCreatable=True,…
rikkit
  • 1,127
  • 3
  • 18
  • 35
7
votes
1 answer

Set blendmode for drawing strokes?

I've looked a bit and think the answer to my question is "no", but here goes: With Javascript and a canvas tag, I can draw nicely alpha-blended lines with stroke(). This is loads of fun, but I'd like to take it one step further by setting the…
orion elenzil
  • 4,484
  • 3
  • 37
  • 49
7
votes
4 answers

How to handle alpha in a manual "Overlay" blend operation?

I'm playing with some manual (walk-the-pixels) image processing, and I'm recreating the standard "overlay" blend. I'm looking at the "Photoshop math" macros here: http://www.nathanm.com/photoshop-blending-math/ (See also here for more readable…
Ben Zotto
  • 70,108
  • 23
  • 141
  • 204
1
2
3
50 51