The lineargradientbrush tag has no wiki summary.
2
votes
1answer
49 views
How to read the color from an offset of a XAML LinearGradientBrush?
Given a LinearGradientBrush defined as follows:
<LinearGradientBrush x:Key="RedYellowGradient">
<GradientStop Color="Blue" Offset="0.01" />
...
1
vote
1answer
129 views
LinearGradientBrush with a fixed-width gradient on both ends
I want to use a LinearGradientBrush to fill a rectangular range on a canvas with a gradient. The catch is, I want the gradient to appear the same on both sides of the rectangle, no matter how large ...
0
votes
1answer
152 views
Changing the lineargradient offset colour of content template based on templatebinding background colour WPF
Ok so here's the problem. Am trying to figure out how to make this work:
Consider the following ControlTemplate for creating a Custom Button:
<ControlTemplate x:Key ="cButton" TargetType="{x:Type ...
1
vote
2answers
143 views
Attach system colors to LinearGradientBrush
In my application I'd like to create a fading line that has GradientStops with system colors, I'm trying to do it like this:
<UserControl.Resources>
<Style x:Key="Divider" ...
0
votes
0answers
130 views
Linear Gradient Brush On_Paint Method [closed]
Just curious to see if I'm missing something in the cleanup here. I searched around and this is the best setup I can find for a gradient paint method, if I'm missing something, please help me out!
...
2
votes
1answer
109 views
.NET Brush with hard color transition (similar to gradient)
I need a single Brush that will make a hard transition from one color to the next like shown below. I'm providing the Fill Brush of another control, so I need a single Brush object.
What I want:
...
3
votes
0answers
369 views
c# GDI+ out of memory exception [closed]
Intro: Lets' set of points (x, y) on a plane and func F(x, y) returning double. Points're generated randomly in the user-defined rectangle(which means constraint on variables). Let's set the number ...
2
votes
2answers
843 views
Set button background style in wpf
i have one button and i set button background style with LinearGradientBrush. everything works fine but when i run button and press click on button then gradient color is showing ob button with bit of ...
0
votes
0answers
147 views
Binding lineargradientbrush color with property
I have a problem with color in gradientstop. I want binding offset color with my property that return color (System.Windows.Media), but not working and return defalt color Transparent. If binding same ...
1
vote
1answer
280 views
Animate a linear brush using a data trigger
I am trying to animate a linear brush on a border using a data trigger but have come accross a problem where I cannot use the TargetName
My code is as follows, can anyone suggest a way to resolve ...
0
votes
1answer
243 views
WPF: LinearGradientBrush with Alpha not works in a Popup control?
I want to create a custom WPF dropdown menu, so I created a User control which contains a ToggleButton and a Popup control. The popup appears when I click on the button.
Now I want to add a mouse ...
0
votes
1answer
237 views
LinearGradientBrush with gradientstops outside of the line
I'm trying to draw a waveform like the ones used on soundcloud.com in my WPF application
I'm doing this by drawing multiple vertical lines
What I want is that all the lines have the same color ...
2
votes
1answer
473 views
LinearGradientBrush Color Binding (Simple Bar Chart ItemsControl)
EDIT:
I had hex value(string) that i converted to a Brush hence it did not take my color the following like takes my colors succesfully:
(Color)ColorConverter.ConvertFromString(colorArray[0])
The ...
0
votes
1answer
323 views
Absolute scaling a LinearGradientBrush texture in WPF 3D
I've the following XAML:
<Viewport3D>
<Viewport3D.Camera>
<OrthographicCamera FarPlaneDistance="100" LookDirection="0, 0,-1" UpDirection="0,1,0" NearPlaneDistance="1" ...
0
votes
2answers
385 views
I get fringes when I use gradient brush for the background
I am using a gradient brush for the phone page background but i am not getting a smooth gradient but instead get color fringes in the background. The fringes are about 16 pixel wide. I am simply ...
3
votes
2answers
417 views
Get color in specific location on gradient
I have GradientStopCollection:
GradientStopCollection grsc = new GradientStopCollection(3);
grsc.Add(new GradientStop(Colors.Red, 0));
grsc.Add(new GradientStop(Colors.Yellow, .5));
grsc.Add(new ...
0
votes
1answer
362 views
Apply Opacity to LinearGradientBrush
I have a LinearGradientBrush defined as follows. I want to use this somewhere in my xaml but I want to change the opacity in this particular case (only in this instance, not everywhere I use it). Any ...
0
votes
0answers
163 views
Transparent GradientStop in Silverlight is not exactly transparent
I'm styling a simple graphical object in Silverlight, which is shown as a red rectangle with some white text on it; when the mouse hovers the rectangle, I want to show an overlay rectangle which fades ...
1
vote
1answer
173 views
How can I prevent/control LinearGradientBrush wrapping?
I'm having problems with my LinearGradientBrush. I don't know if it's the time (1:43am here) or if I'm being stupid for some other reason, but this is really bugging me.
I have the following code:
...
1
vote
1answer
312 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 ...
0
votes
1answer
654 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 ...
1
vote
0answers
271 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 ...
0
votes
1answer
403 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
2answers
2k 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( ...
2
votes
1answer
160 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 ...
0
votes
1answer
408 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 ...
1
vote
1answer
588 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
274 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
2k 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 ...
0
votes
3answers
723 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 ...
1
vote
1answer
479 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
355 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
153 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 ...
2
votes
1answer
755 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 ...
1
vote
2answers
796 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
548 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:
...
2
votes
2answers
918 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
463 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
2k 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 ...
2
votes
2answers
2k 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 ...
0
votes
1answer
559 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 ...
