Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
408 views

Is it possible to animate a LinearGradientBrush in WPF?

Is it possible to animate the StartPoint or EndPoint of a LinearGradientBrush? If so, what is the type of the Storyboard object used to animate the Points, as when I try the following I get "0,1" is ...
2
votes
2answers
1k views

SVG -> WPF linear gradient

Does anyone know if there is an equilant attribute of SVG's "gradientUnits=userSpaceOnUse" in WPF for a LinearGradientBrush? I can't seem to find this. If not, does anyone know about how to calculate ...
1
vote
1answer
50 views

Silverlight Dynamic Background (using gradient) on Border

I'm a fairly experienced .NET desktop developer, but I'm new to Silverlight. I'm trying to convert an iOS application to a Silverlight app. The app is basically a list of items that are built using ...
1
vote
0answers
69 views

C# 3D wpf gradient colour depending Z

C# I want to t ouse the LinearGradientBrush with absolute cordinates so the pixel colour of each objects reflactes the height but I do not understand how to use the LinearGradientBrush. But how is ...
1
vote
1answer
88 views

Problem with Multigradient brush implementation from scatch in C++ and GDI

I am trying to implement a gradient brush from scratch in C++ with GDI. I don't want to use GDI+ or any other graphics framework. I want the gradient to be of any direction (arbitrary angle). My ...
1
vote
1answer
88 views

How to animate the StartPoint of LinearGradient

I have a LinearGradientBrush used as an OpacityMask and I want my animation to rotate the gradient, so I'm trying to animate the position of the StartPoint and EndPoint but I can't make it work for ...
1
vote
1answer
130 views

Simulating GDI+ gamma correction in QT

I need to implement some GDI+ functionality in QT, particularly, a LinearGradientBrush. The only method that I have troubles with is SetGammaCorrection. I found a topic that mentioned that MSDN has a ...
1
vote
1answer
620 views

Setting a LinearGradientBrush instead of a solid color to a storyboard.targetProperty in a VisualState

I'm wondering how I can set a Storyboard.TargetProperty to a LinearGradientBrush instead of a solid color. I'm new to VisualStates so please let me know if I'm not given enough information for my ...
1
vote
1answer
260 views

Weird behavior of LinearGradientBrush

I want to fill a Rectangle with a LinearGradientBrush. With some Rectangles I get some strange behavior. Example: Rectangle rect = new Rectangle( 20, 20, 20, 34 ); LinearGradientMode mode = ...
1
vote
1answer
212 views

How to get consistent gradient fill in GDI+ when using a rotated LinearGradientBrush?

I'm using GDI+ in my application, and I need to use a rotated LinearGradientBrush to paint several rects in the exact same way. However, although I'm calling the same code to fill each rect, the ...
1
vote
3answers
121 views

Apply Brush to Two Objects At Once

I'd like to apply a Brush (LinearGradientBrush in this case) to two or more objects (TextBlocks) at once. The effect that I'd like is something like this: Edit I cannot simply apply the same brush ...
1
vote
2answers
408 views

How to change colors of a GDI+ LinearGradientBrush?

I have to write several small vertical gradients (on a loop) and so I think it's faster to re-use an existing LinearGradientBrush (correct?) But this isn't what I expected to happen... ...
1
vote
0answers
383 views

OpacityMask from LinearGradientBrush with Absolute GradientStops in Silverlight 3

My question is similar to this one. However, the answer in that thread does not work for me, because I'm using the LinearGradientBrush for an opacity mask. I've got a grid with three rows: ...
1
vote
2answers
666 views

Can you set a gradient brush for a listboxitem background in silverlight?

I am looking for a way to set a gradientbrush as the background for a listbox item. I have a DataTemplate defined and have specified a gradient brush but it always appears as the listbox background ...
1
vote
1answer
317 views

Color Code Rows in a Data Grid Based on a Gradient in VB.Net Forms

I have a grid containing rows flagged with different priorities. I want to color the high priority rows red, low ones blue, etc. I'd like to set the shade based on a mathmatically calculated ...
0
votes
1answer
68 views

WPF Opacity Masks

I can create an opacity mask in WPF using a LinearGradientBrush as follows <LinearGradientBrush x:Key="SplitterOpactityMask" StartPoint="0,0" EndPoint="1,0"> <GradientStop ...
0
votes
0answers
151 views

3D Linear gradient brush diffuse material

C#, WPF 3D I am trying to apply a gradient brush to a triangle by manipulating the Diffuse material but I can not get it right, that is, the triangle does not get gradient coloured, is it posible ...
0
votes
1answer
77 views

How to set the background QBrush of a QMdiArea widget to a gradient of system colors?

I'm trying to set the background QBrush of a QMdiArea widget in Qt4 to a gradient of system colors. Here's some code I have now: QPrios::QPrios(int &argc, char **argv): QApplication(argc, argv) ...
0
votes
1answer
183 views

How to use LinearGradientBrush and Background

I'm trying to paint a background of my WPF window using LinearGradientBrush, however my code doesn't work. Here is the code LinearGradientBrush gradientBrush = new LinearGradientBrush( ...
0
votes
1answer
144 views

binding LinearGradientBrush StartPoint in a custom control

In a previous question kbmax told me how I could bind custom properties in my generic.xaml. This answer was at Setting Border background with a template binding It worked great until I tried to do ...
0
votes
3answers
233 views

Giving a stackPanel the same LinearGradientBrush as the toolbar has by default

I have two ToolBars side by side (I had to do that so I could align buttons right and left) But now, I have to add some text that can be aligned right left or center between both toolbars. I added the ...
0
votes
1answer
1k views

How to paint a precise Gradient with LinearGradientBrush in C#?

I'm painting this object in C# using GDI and I need to have precise pixel painting. However, this is not working... I don't know if it matters but the object I'm painting is a ToolStrip, I'm doing a ...
0
votes
1answer
424 views

Changing the StartPoint/EndPoint of a LinearGradient brush in Expression Blend UI

Seems like as really simple thing to do, but I just can't track it down in the help or online. I know how to change the XAML to set the StartPoint and EndPoint of a LinearGradient brush, but I don't ...