desktop-application

Why is WPF loosing terrain with Silverlight 4 coming? [duplicate]

被刻印的时光 ゝ 提交于 2019-12-05 02:06:43
问题 This question already has answers here : Closed 10 years ago . Possible Duplicates: What does WPF still have to offer over Silverlight 4? Why change from WPF to Silverlight 4 I'm working on a WPF application. We considered using Silverlight instead of WPF, but decided we want a full blown desktop application with the whole unique desktop application feeling and advantages that gives. However, starting today there has been a lot of buzz out there about Silverlight 4 being announced at PDC09,

Right-to-left UI Guidelines?

喜夏-厌秋 提交于 2019-12-04 20:15:17
问题 I'm looking into RTL support for a proprietary UI framework (for a desktop app), and I'm wondering: are there guidelines as to how the widget rendering has to change? I'm looking for a list of things like: checkbox labels are on the left of the checkbox, and right-aligned toolbar buttons flow from right to left vertical sliders are on the left sice window decoration ??? ... 回答1: Generally layout should be mirrored that is horizontally flipped. Apart from controls you already mentioned,

Connection pooling in Swing based Application

断了今生、忘了曾经 提交于 2019-12-04 19:49:58
I have one application in Java Swing. In which i have used one connection for the application on single database. But now multiple users are usig that application , so everytime new connection is getting created. DB is coming very slow in performance; Can I use connection pooling in Swing based desktop based application. DB used is SQL server 2000. Any help appriciated. Thanx in advance. Yes you can use C3P0 There are many connection pooling libraries in fact. anvarik http://commons.apache.org/pool/ might be also helpful. I actually had the same question for CouchDB here: Connection pool for

TideSDK not working with Pusher

喜你入骨 提交于 2019-12-04 19:08:18
I'm trying to develop a desktop application coded in HTML, CSS, jQuery and PHP, compiled with TideSDK. This application needs to receive real-time notifications from a webpage, so that when a user clicks on a specific button on the website, the desktop application captures that immediately. I've found Pusher for this matter, and it works great between two websites, but it appears as "unavailable" to connect in a desktop application with TideSDK. This is what I get from the web: Pusher : State changed : initialized -> connecting Pusher : Connecting : {"transport":"ws","url":"ws://ws.pusherapp

What approach can i take to developing a Desktop application using Web Technologies

拥有回忆 提交于 2019-12-04 15:22:50
i am wondering if there is any way i can create an app that starts as a desktop application, for personal use for now. and since desktop applications can work with my HDD files which i may want to manage but don't feel secure throwing them onto a web server. but what i think i may want to do in the future is port the app to the web since that is where i think is the future of applications to come. web apps are available everywhere eg. web apps can be used on smart phones etc. facilitate team collaboration etc. i have looked at some technologies but all seem to have some disadvantages Adobe AIR

Can the MVC Design Pattern / architectural pattern be used in Desktop Application Development?

偶尔善良 提交于 2019-12-04 13:35:06
问题 I've just learned what ASP.NET MVC is and I'm wondering if the pattern is ever used in Windows Desktop application development? I'm specifically looking at potentially trying to use it in a Desktop .NET application. Please forgive me if this question is way out in left field in terms of how MVC is suppose to be used. I'm still trying to wrap my head around the details of it. 回答1: MVC comes in many flavors, Marting Fowler discusses at http://martinfowler.com/eaaDev/uiArchs.html Google returns

How to deploy VS2008 express desktop project?

孤人 提交于 2019-12-04 13:30:31
i was wondering how could i deploy/make it into an installer for an app which is created using vs 2008 express. i know that the setup and deployment feature is only available via the full version of visual studio right? So are there any add ons or perhaps additional free/or non-free if it has to come to that which i can use to do this? or is the best tool for the job is the old visual studio installer from the vs 6.0 days? :) thanks Updates : After some googling, i found this link on using click once to deploy vs 2008 express with tutorials in them , i'll check it out, but of course more &

How can I set WPF window size is 25 percent of relative monitor screen

雨燕双飞 提交于 2019-12-04 13:22:53
I have a WPF window and How can I set WPF window size is 25 percent of relative monitor screen.How can I set these properties. In your MainWindow Constructor add this.Height = (System.Windows.SystemParameters.PrimaryScreenHeight * 0.25); this.Width = (System.Windows.SystemParameters.PrimaryScreenWidth * 0.25); Also don't set WindowState="Maximized" in your MainWindows.xaml otherwise it won't work. Hope this helps. Or using xaml bindings MainWindow.xaml <Window x:Class="App.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx

Get notified when internet is connected or disconnected

浪尽此生 提交于 2019-12-04 13:09:15
问题 I have a desktop application in WPF and C# developed under the .Net 4.0 Client Framework that has to show or hide some data according to if internet is available or not on the PC. This means I have to be able to detect as soon as possible if the internet is disconnected or connected in order to react. (Example could be disconnect from a wireless network or unplugging the network cable) As I researched a bit I found that an event exists in the class NetworkChange called

Gwt: Run as desktop application

橙三吉。 提交于 2019-12-04 12:27:04
We decided to write client side application using Ext GWT it is good and powerful framework, but currently client wants to create desktop application, So, my question is Are there any solutions to start GWT application as Desktop? P.S I've found one project calls gwt-in-the-air but want opinion of professionals :) Thanks. Depending on your needs, you should be able to package a GWT app as an Adobe AIR or Appcelerator Titanium Desktop application without any modification. IIRC, there's only a small patch/override to do on com.google.gwt.xhr.client.XMLHttpRequest because it uses new Function()