Questions tagged [toolkit]

A widget toolkit, widget library, or GUI toolkit is a set of widgets for use in designing applications with graphical user interfaces (GUIs).

A widget toolkit, library, or is a set of widgets for use in designing applications with graphical user interfaces (s).

The toolkit itself is a piece of software which is usually built on the top of an operating system, windowing system, or window manager and provides programs with an application programming interface (), allowing them to make use of widgets. Each widget facilitates a specific user-computer interaction, and appears as a visible part of the computer's GUI. Widget toolkits can be either or .

603 questions
6
votes
1 answer

Custom collection crashes DataGrid on Edit

Im currently trying to bind the DataGrid.ItemsSource to a custom RowCollection, which implements IList and INotifyCollectionChanged: Public Class RowCollection(of T) Implements IList(Of T) Implements INotifyCollectionChanged Private _List As…
Federico Berasategui
  • 43,562
  • 11
  • 100
  • 154
6
votes
4 answers

How to solve the connection when install aws toolkit on eclipse Neon?

I am in a company, and need set proxy to connect to the Internet. The proxy setting is ok, because I can connect to other website, e.g. Neon - http://download.eclipse.org/releases/neon, but not for http://aws.amazon.com/eclipse. The error message…
user2613603
  • 147
  • 1
  • 3
  • 9
6
votes
3 answers

How to make a swing app aware of screen size change?

while my swing app is running I change the size of the screen (e.g. from 1024x768 to 800x600). Is there any event I can listen to to be notified about this? Alternatively I could check the screen size in every couple of second, but the…
Marton Sigmond
  • 132
  • 1
  • 8
6
votes
2 answers

Compilation Error when using AJAX Control From AJAX ToolKit

I tried using AJAX Control for my first time after I installed the AJAX Toolkit for ASP.NET. I created a new ASP.NET website and added the ConfirmButtonExtender. After I run it without changing anything I get this error: Compilation Error …
Aviran Cohen
  • 5,581
  • 4
  • 48
  • 75
6
votes
5 answers

WPF DatePicker IsEnabled property not changing appearance

I think I have found an issue with the DatePicker in the toolkit, perhaps some of you gurus can check it out. The issue is when setting the IsEnabled property of the DatePicker. If set in XAML, it stays grey even if you set the IsEnabled to true at…
Jonathan
  • 651
  • 8
  • 14
6
votes
1 answer

WPF Toolkit Color Picker edit template now no available colors

I have looked for a solution to my problem on Google for hours, but there isnt much information to find. I am using WPF Toolkit v2.2.1. I have a Color Picker control in my WPF application, which needs to be custom styled. I am editing the control…
Nicki
  • 183
  • 1
  • 9
6
votes
4 answers

GUI framework Java

I am looking for some framework or toolkit (style drag and drop) for creating gui in Java. I need to do quite complex application with dockings, toolbars, tables etc. Which one would be best?
joseph
  • 687
  • 3
  • 12
  • 21
6
votes
4 answers

Is there a C library for GUIs that does not require its own event loop to be used?

I am looking for a GUI toolkit that I can use from plain C, that works at least on Linux and that does not force me to use its own eventloop – I want to use libev for the main loop and have it notify the toolkit library when X events come in or…
thejh
  • 44,854
  • 16
  • 96
  • 107
6
votes
5 answers

Cross-browser CSS

How do professional web designers create cross-browser CSS? Is it generally done by hand, or are there toolkits that can streamline the process, like YUI does for JavaScript? I'd prefer to stay away from WYSIWYG editors like DreamWeaver. Thanks!
ThisSuitIsBlackNot
  • 23,492
  • 9
  • 63
  • 110
5
votes
2 answers

Silverlight toolkit for WP7, DatePicker\TimePicker fontsize pro­blem

I have following problem with TimePicker \ DatePicker from Silverlight Toolkit for WP7. I don't know how to change the font size in TextBox inside picker: FontSize property:
5
votes
2 answers

Java ME Dynamic UI Toolkit

Is there a UI toolkit for Java ME that I can use to generate UI elements on the fly, based on, for example, JSON or XML that I send to the device by way of a web service pull?
Tash Pemhiwa
  • 7,590
  • 4
  • 45
  • 49
5
votes
2 answers

Install AWS Toolking For Visual Studio 2017 for MAC

Is there a way I can install AWS Toolkit For Visual Studio 17 on MAC? I downloaded the toolkit from https://marketplace.visualstudio.com/items?itemName=AmazonWebServices.AWSToolkitforVisualStudio2017. If I open it with Visual Studio, it opens the…
Asdfg
  • 11,362
  • 24
  • 98
  • 175
5
votes
2 answers

Higher-level, semantic search-and-replace in Java code from command-line

Command-line tools like grep, sed, awk, and perl allow one to carry out textual search-and-replace operations. However, is there any tool that would allow me to carry out semantic search-and-replace operations in a Java codebase, from command-line?…
Harry
  • 3,684
  • 6
  • 39
  • 48
5
votes
4 answers

Perl 5.16 on windows 7 failed to install Template Toolkit

I tried to install Perl 5.16 module 'Template-Toolkit' on windows 7 by using this command in cmd: C:>ppm install Template-Toolkit ppm install failed: Can't find any package that provides Template-Toolkit All other modules I installed (AppConfig,…
user1178560
  • 313
  • 1
  • 4
  • 14
5
votes
1 answer

Template::Toolkit variable processing

I'm using TT from perl, and trying to insert into template and process a variable, that itself contains TT directives. So, in the script I'm writing smth like: $var{descr} = "[% pid = 1; INSERT plink.par %]"; And then in TT template (which received…
Sly
  • 415
  • 2
  • 8
1 2
3
40 41