A custom control is a reusable GUI element, derived from an existing control type, customized with additional behavior, functionality and/or appearance.
0
votes
0answers
8 views
datagrid view with 2 data sources
I'm writing an app where i want to compare the data from two different data sources to see if there are any differences. All examples i have seen of similar functionality always place two datagrids ...
0
votes
1answer
18 views
Custom control not showing
I have created a simple custom control to imitate Modern UI Tiles. The project builds without any problem, but the custom control doesn't show up on the window at all. It is pretty simple, and even ...
3
votes
2answers
29 views
SeekBar with custom thumb and segmented text
Hello All,
I am looking for a seekbar like this image. I succeeded in setting background but problem is thumb and segments text below seek bar. Does anyone know solution
Thank You
0
votes
2answers
32 views
Unknown exception in custom JButton, in java (swing)
I have tried to create a custom JButton. I tried to paint its caption via the paintComponent method but i did not like the font rendering of this method. So I added a JLabel to my button which worked ...
0
votes
0answers
22 views
WPF Problems with Custom Control
I have a Custom Control in WPF
public class MyClass: Control, INotifyPropertyChanged
{
private Boolean _hasData;
public Boolean HasData
{
get { return _hasData};
set
...
0
votes
2answers
17 views
How to get location of mouse in JavaFX?
I am a beginner in java(fx).
How do you get the mouse location in x and y in JavaFX? I tried using AWT's MouseInfo(also imported it), but it's not working. I also saw the code for it in Ensembles(that ...
-1
votes
1answer
24 views
Create a Custom MessageDialog with scrolling [closed]
I have to show a popup in my Windows 8 C# app that displays a long list of information.
I want to do this in the same style as MessageDialog, but MessageDialog does not allow scrolling so I need some ...
0
votes
0answers
14 views
ID of Nested custom web control
I have googled a lot today and have not found any helpful answers to my problem.
I have a web custom control (CustomControl1) that calls another web custom control (CustomControl2) as follows:
...
0
votes
1answer
18 views
Refresh child controls in flowlayoutpanel when scrolling
In .NET 3.5 with winforms I'm making an image thumbnail viewer control.
The main control is derived from a FlowLayoutPanel which takes a list of images and displays them. The images which are ...
1
vote
0answers
35 views
How to minimize, maximize and restore down through buttons in java?
I'm creating a JavaFX 2.2 program, and need to create custom UI controls (just those ever-present minimize-maximize/restore-close buttons on the top). I need to create custom buttons for that purpose, ...
0
votes
0answers
30 views
Custom Layout & Custom LayoutParams
I am working on Mono For Android Custom Layout.
My Code is like this:
public class CustomLayout : FrameLayout
{
public CustomLayout(Context context)
:base(context)
{
}
public ...
0
votes
0answers
16 views
Avoid clossing MKAnnotationView when tapped
I've used a nice and beautiful custom callout as shown in the picture.
The callout is just a MKAnnotationView with the shape of a bubble. When I have to show it I add it into the MKMapView's ...
0
votes
0answers
34 views
Custom Control Enum property problems
I have a solution with two projects:
CustomControls has custom controls (.cs files)
WebPages has aspx pages
One of the controls has a property like this:
---- Defined in Platform.CustomControls ...
0
votes
2answers
65 views
C# Assembly Reference problems
I will surely go mad if I don't know what is the reason for this :) :
I have several projects in my solution. The problem I'm getting is in a solution where I'm adding reference of another.
In 1 ...
0
votes
0answers
15 views
Custom Button Transparency Issue
So I have a custom button class, which just grabs images from Resources and uses them as the button. All of the buttons are .PNG and some of them use transparency. The ones with transparency for some ...
0
votes
2answers
44 views
Custom Android RatingBar with 10 stars (used in the Badoo App for Android)
I have tried to duplicate the same custom RatingBar used in the Badoo App
http://s16.postimg.org/7l6dxqsr9/badoo_screens.png
Badoo App to download at:
...
0
votes
1answer
22 views
How can I put a custom control's class inside another custom control?
Say I have coded a custom Canvas like this :
public class MyCustomControl : Canvas
{
public MyCustomControl()
{
this.Background = ...
0
votes
0answers
31 views
How to make custom windows interface completely different than standard window style like of Cyberlink PowerDVD
I can make default styled windows using win32 API for my windows application. Now I need to draw custom windows with custom border, custom maximize, minimize buttons, custom styled windows controls ...
0
votes
0answers
9 views
Add a custom UI control into static UITableViewController with static Cell
I want to add a custom control (this name iCombobox) UITableViewController with static cell (I have 4 previous cells with Apple controls)
Could you please show me how? Thanks.
I am using storyboard ...
1
vote
0answers
44 views
creating a custom object .net
I know we can call a user control with parameters like this:
<myLib:myObject runat="server" param1="<%= getParam1() %>" param2="<%= getParam2() %>"></myLib:myObject>
I need ...
0
votes
0answers
54 views
Adding Attribute to base control of custom control in asp.net
I have created a custom control which is a numeric textbox which inherits a textbox control.
But when it renders , the source of page show me 2 textboxes - one with id of custom control and other one ...
0
votes
1answer
34 views
WPF custom control - reach element inside, rotate only part of custom control
I have a problem with custom control.
I have a custom controls, where i have 5-8 Paths, what user can "select". Up of those Paths i want to have label (inside custom control), where i can change the ...
0
votes
0answers
37 views
Visual Studio won't load custom form
Right, so I have a custom form I designed for a game I'm making in VB.NET for school. It resides in a namespace 'UI'. It (obviously) inherits from Form. I have another code file in the project ...
-4
votes
0answers
27 views
Window 8 selected tile effect in wpf [closed]
I am trying to get selected tile effect for my button. It should show like a green border and a Tick mark at Top Right corner of button.
Can anyone suggest required xaml.
0
votes
2answers
20 views
Attached properties vs. custom control
I have often bemoaned the fact that the WPF ToggleButton does not have properties for AlternateContent and AlternateContentForeground. I'm curious if there's any advantage to creating a ...
0
votes
1answer
19 views
How can I detect accessibility gestures from within a custom view?
I need to make a custom view detect and react to Jellybean's accessibility gestures (eg: scroll a page, swipe focus). An example would be appreciated. I can't seem to find anything definitive in the ...
1
vote
0answers
25 views
Custom control properties not reflecting in ASPX markup
I'm having a .NET 4.0 solution with several projects inside it.
One project has all the custom controls implemented (say CustomControlProject).
The other project has the ASPX pages. (say ...
0
votes
0answers
17 views
custom UIControl focus lost detection
I have created a custom class for drop down control as was needed for my project. I have extended my class from UIControl.
The control is designed in such a way that it displays first item from the ...
1
vote
1answer
72 views
inno setup custom page with checkbox and dropdown list
Is it possible to have a custom page with a drop down list, check boxes, and a button possibly changing the check boxes based on what is chosen from the drop down list. The button will just be used ...
1
vote
0answers
39 views
How to prevent a WPF custom control created with control template from drawing focus around itself?
I'm developing a custom control deriving from Control and defined using ControlTemplate. After stripping out all bells and whistles, the control displays just four TextBoxes:
<Style ...
0
votes
1answer
50 views
How to create curved UIButton for iPhone application
I want to create UIButtons which are curved. For demo look at this image.
I don't want to create the exact buttons, but they will have curve like this buttons. Is it possible to create such buttons ...
0
votes
1answer
61 views
Can we create a circular uitableview in iphone program?
Can we create a Circular/ Rounded Shape UITableview ?
I know that we can rounded the corners of table view or by transform we can rotate table view but is need UITableview to scroll in clock wise or ...
0
votes
1answer
21 views
Custom (different than Google Map) Map in Android
I want to use some other Map instead of using Google Map.
So please suggest how I can initiate such thing in Android.
Provide some link or code snippet.
Regards,
Parmanand
0
votes
1answer
33 views
Custom Stop Button HTML5 Video
So im trying to make a little video with custom controls, it is the first time, so i have no idea what im doing. but i have godt the play pause putton to work, but how do i make a stop button?
My ...
-2
votes
0answers
18 views
Button custom control in wpf [closed]
I have to draw line on button that is custom control this is a wpf application.
please give me some suggestion.
0
votes
1answer
19 views
Customs views and TouchEvent
I'm programming a custom view that divides the image into pieces. The objective is to exchange the chunk touched by the adjacent piece depending on the displacement direction. The problem I have is ...
0
votes
2answers
45 views
Android: Custom TextView Inflate Exception
I have created a custom TextView and the only thing I did is I put one "instance" in the layout xml.
This causes to crash the app with an "Inflate Exception" :
Here's the complete custom class ...
0
votes
2answers
39 views
Change the frame of a ViewController set in AppDelegate
I am using a controller to replace the traditional UITabBarController.
The one I am using is AKTabBarController.
Now All is working, but there is one stage where I want to remove it using a Gesture.
...
0
votes
0answers
32 views
How to create UIScrollView with different page sizes (page snapping, bounce)
I'm trying to create custom vertical UIScrollView which could handle multiple pages with different page heights.
Assumptions:
page height is equal or greater than screen height
if page is taller ...
0
votes
2answers
35 views
Build Custom View with allways same Layout
I have made my own layout for a Button. Normaly I create a View by this:
LayoutInflater inflater = LayoutInflater.from(getActivity());
myButton = inflater.inflate(R.layout.mybutton, null, false);
...
0
votes
1answer
31 views
Get the resource id for the drawable reference used in styled attribute
Having this custom view MyView I define some custom attributes:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="MyView">
<attr ...
0
votes
1answer
20 views
Custom control or not in this case?
I would factor a graphic control, but I do not know how to do it.
I want to create a container control with templated elements.
ex:
<MyControl>
<MyControl.Elements>
...
0
votes
0answers
62 views
Custom ComboBox with two lines of text and an image - strange DrawItem behavior
I am trying to build a custom ComboBox Control that will draw two lines of text and a right-aligned image for each of its items. I have the elements all positioned correctly, but there is something ...
0
votes
0answers
24 views
ASP.NET Custom Control Disabled in Toolbox
I'm trying to create a custom control but cannot seem to get it added to the toolbox correctly. This is for use in an ASP.NET user control, which will be deployed to Sharepoint as a web part ...
1
vote
0answers
88 views
2012 Visual Studio Custom Control Xaml/Style Designer - How to edit generic xaml styles?
I have been digging around online and in stack overflow, but maybe I am not asking the question correctly.
I am attempting edit my generic/default custom usercontrol style without opening up Blend. ...
0
votes
2answers
23 views
Custom control acting as Page allowing children in XAML
I actually have two questions:
How do I modify a custom control that inherits from a FrameworkElement that only holds one child (e.g. Page or ContentControl) so that it holds multiple children (like ...
0
votes
1answer
50 views
UIBarButtonItem: Change title font colour during animation
I've initialized a UIBarButtonItem with a custom UIButton and set it to be the rightBarButtonItem within a navigation controller.
UIBarButtonItem *rightBarButtonItem = [[UIBarButtonItem alloc] ...
0
votes
1answer
14 views
ColorMatrixColorFilter is not applied on custom button background
This question is in a sense a follow up to this post and based on the solution showed on this post. But anyway I'll try to ask it in a complete way.
I have custom button with a background selector ...
0
votes
0answers
36 views
web resources not loading for user control on update panel update
I am working with a legacy user control that is not playing well with update panels. Essentially, this user control loads several web resources into the parent page. The problem is, if the user ...
0
votes
0answers
49 views
Can't set default value of property in custom control?
The problem is I've already initialized all the initial values for my Properties in my Custom control constructor, for example, PropA = true. But when dragging-n-dropping the final Custom control onto ...






