0
votes
1answer
31 views
How to make a control resizable by the user at runtime [.NET Winforms]?
It is in Winforms.
I have a UserControl that is anchored TOP, BOTTOM and LEFT. I would like to allow the user to drag its right border somehow and resize it horizontally.
The control is placed …
0
votes
0answers
14 views
DetailsView not retaining mode on postback, within custom Panel
Hi all,
I have a custom Panel control which works like a regular Panel, but adds a heading to the top. The code for this panel is as follows :
Public Class GInfoPanel
Inherits …
2
votes
2answers
47 views
What is the best GUI library for blackberry java development?
What do you think is the most comprehensive and stable GUI library for Blackberry java development? I am currently using J4ME, anyone has any other experiences? A good GUI library should also have …
1
vote
1answer
19 views
The page lifecycle for controls(order contructed from a page)
Ok, I have not been able to really find an answer to this on the internet.. Maybe someone here can help me.
For example, lets say I have a page and 2 custom controls on that page. During what event …
2
votes
3answers
42 views
WPF: How to accept both string and FrameworkElement in dependency property (like wpf Label does)?
Hi, I am creating a custom WPF control that should have several content slots.
I'd like the user to be able to use either string, or a FrameworkElement as a value of property, for example:
<!-- …
1
vote
1answer
58 views
XAML binding doesn’t seem to set if the property is initialized in the constructor
Hello, everybody!
I've run into a problem with data-binding inside control template while the property is initialized inside the constructor.
Here is the show-case (you can also download sample …
0
votes
0answers
19 views
Silverlight 3 Custom Control Event-handling Navigation
I have a Silverlight 3 aplication, The solution (of 3 projects) looks Like this:
ChartsCustomControl
PieChart.cs
SLGrid.Web
SLGrid
NavigationPage.xaml
…
1
vote
2answers
23 views
iphone BPM tempo button
i want to create a button that allows the user to tap on it and thereby set a beats per minute. i will also have touches moved up and down on it to adjust faster and slower. (i have already worked out …
1
vote
3answers
44 views
Blackberry - how to resize image?
I wanted to know if we can resize an image. Suppose if we want to draw an image of 200x200 actual size with a size of 100 x 100 size on our blackberry screen.
Thanks
0
votes
1answer
16 views
Blackberry - how to animate Custom Field?
I have created a custom field class "Seek" to draw a fillrectangle.
class Seek extends Field {
int fill;
protected void layout(int width, int height) {
setExtent(320, 5);
}
…
0
votes
2answers
19 views
Windows Mobile: how to hide Size property on a Custom Control.
Hello!
I'm developing a Windows Mobile WinForm app with C# and .Net Compact Framework 2.0 SP2.
I have a control that inhertit from System.Windows.Form.Control that I want to make private Size …
0
votes
3answers
31 views
placing widget in listbox/dropdown in gwt
hi,
i am using gwt to build my web site.
i would like to create a dropdown/listbox that contains no just text but also images, meaning that in the drop down there will be a what ever widget that ill …
0
votes
1answer
26 views
Why does this CustomValidator not fire?
public sealed class IntegerBox : TextBox
{
#region constants
private const string RangeConstraintValidatorID = "rangeConstraintValidator";
#endregion
#region child controls
…
0
votes
3answers
81 views
creating a .NET custom control
I want to create a control which is basically a ListBox, but each ListItem is a collection of controls. So each item of that list box is a combination of a Label, a CheckBox, a Timer and a TextBox.
…
1
vote
2answers
52 views
Set ClientRectangle in custom form in C#
In C# I have custom form of None border style which override onPaint event and draw custom background with transparency key. I want to set my own client rectangle value (so content would be placed …
