Tagged Questions
The thickness tag has no wiki summary.
5
votes
5answers
4k views
How to change the strike-out / line-through thickness in CSS?
I'm using the "text-decoration:line-through" in CSS, but I can't seem to find any way to vary the line thickness without inelegant hacks like hr or image overlays.
Is there any elegant way to specify ...
4
votes
2answers
1k views
WPF Border Thickness increase direction
Hey. Another WPF question. In my XAML code I have a border:
<Border x:Name="myBorder" Background="AliceBlue"
Width="200" Height="200"
BorderThickness="10" BorderBrush="Black">
...
2
votes
5answers
83 views
CSS for No Border Thickness
I have a table that I built out with 0px border, and I am trying to get images in each row to fit seamlessly to one another but even though the border does not show there is still a 1px gap in between ...
2
votes
1answer
549 views
Can I change the thickness of the border of a window with MFC?
Normally, the thickness of a window is 4 pixels, which can be retrieved by GetSystemMetrics method. Can I change its value, for example 2 pixels?
Thank you very much!
1
vote
1answer
224 views
can the CImg library draw thick lines
I have been using the CImg library, and have been pleased with how easy it is to integrate and use. However, I now want to draw thick lines (i.e., more than one pixel thick). It is not clear from the ...
1
vote
1answer
174 views
How to make the BorderThickness receive its value from a WPF resource key?
I try to create String, Int32 resource as below but it doesn't work. I got the error saying that the value can't be converted.
If you know how to do this please help.
<ResourceDictionary
...
1
vote
3answers
305 views
WPF: TwoWay binding between 4 TextBoxes and 1 Border.Margin
I want to set the BorderThickness of a Border of a UserControl using 4 TextBoxes, but I can't get it to work.
XAML code demonstrating the problem (only this code in combination with the converter is ...
1
vote
1answer
209 views
Prevent Silverlight from scaling line width
When using the ScaleTransform class, Silverlight also scale the thickness of the strokes on the shapes that I display. But what if I don't want this behaviour? Is it possible to disable the scaling of ...
1
vote
1answer
929 views
How to adjust JFrame border thickness in Java
I'm using Vista, my old Java app ran on Win XP has thin borders, about 2 pixels thick, but now on Vista, the borders deafults to thick lines, maybe 6,7 pixels thick, can I specify in Java how thick my ...
1
vote
3answers
2k views
Bresenham line algorithm (thickness)
I was wondering if anyone knew of any algorithm to draw a line with specific thickness, based on Bresenham's line algorithm or any similar.
On a second thought, I've been wondering about for each ...
0
votes
2answers
248 views
Animate Margin / Thickness
I just thought I already know how WPF and XAML Syntax works....
wrooong.
I got the message:
'WithEvents' variables can only be typed as classes, interfaces or type parameters with class ...
0
votes
3answers
239 views
Setting margin in XAML for dynamically created WPF controls
I have a WPF that creates buttons dynamically when the form is loaded and adds them to a StackPanel that has been declared in XAML. I would like to define the style for these buttons completely in ...
0
votes
1answer
384 views
ActionScript lineStyle Thickness to fill a circle
i'm trying to build a circle using lines. each line starts in the centre of the circle and is as long as the circle's radius. using a loop along with sine and cosign waves, i can build the circle ...
0
votes
1answer
365 views
Flash lineStyle rounds thickness?
The sprite which contains all element in my game world uses the real-world meter as distance unit, it doesn't know what pixels are. I then apply a scale to this sprite to make it appear correct on ...
0
votes
1answer
601 views
iPhone Draw Line Thickness
My line is only 1 pixel thick. How can I thicken it? I use MontoTouch.net but Objective-C is fine in the answer.
ctx.SetRGBStrokeColor (1,1,1, 1f);
ctx.MoveTo(130,110);
ctx.AddLineToPoint(200,200);
...
0
votes
1answer
966 views
How to TemplateBind to BorderThickness.Top (or Bottom or Left or Right)?
I wonder if it is possible to bind a structure element like BorderThickness.Top to TemplatedParent's corresponding property. I have tried
<Border Margin="0" Padding="{TemplateBinding Padding}" ...