Browse by Tags
All Tags »
DEV (
RSS)
Congrats! The eMap website started using Silverlight Technology for Interactive Maps:
There are some bugs in VS2010 RTM. We discovered that some Dynamic Resources from Merged Dictionaries in App.xaml stopped working. See how to fix this...
Some .Net applications are required to run as single instance process (at startup, each process “ensures” that he’s unique). This requirement may come from licensing issues, technical and/or other reasons. Quick search in Google will provide a variety of solutions , most of them are based on WindowsFormsApplicationBase object from VB.Net, usage of Mutex object and other techniques. I don’t like mixing VB with C#, and also Win-Forms solution isn’t “pure” enough for WPF applications. So I wrote my...
This solution can be used in WPF and in WinForms (with some improvements). Many times UI programmer needs to activate window, the activation can be done by using “Activate()” function in window. The problem is that this function will not show window if it is minimized. In that case you can use this workaround: using System ; using System.Windows ; namespace Test { public partial class MyWindow { ...
בפרויקטים גדולים של מערכות תוכנה עם ממשקי משתמש רבים קיים צורך בכתיבת מסמך סטנדרטים בתחילת הפרויקט. מסמך זה משמש את כל הגורמים המעורבים בעיצוב-פיתוח GUI: מנתחי מערכות (System Analysts), מעצבי מודולים (SW Designers) ומתכנתים (האנשים שבפועל בונים GUI ומקודדים לוגיקת קליינט). מסמך סטנדרטים הנו מרכיב הכרחי בכל שלבי הפרויקט......
Recently, I deal with UML design in EA, also I design DB Entities for DBML (Linq2Sql). In regular way, programmer creates DB table and imports it into VS solution as entity class for DBML. But, sometimes we need to create DB table from existing class...
הנכם מוזמנים להצביע בעד ההרצאות שלי באתר של כנס המפתחים שאמור להתקיים ב- 14/09/2009 במשרדי מיקרוסופט ברח’ שנקר 13 בהרצליה.
פרסמתי הצעה לשתי הרצאות מעניינות העוסקות בתחום פיתוח UI. שתיהן מאוד פרקטיות, ללא שווק, הכל תכלס, הכל מצד המפתח ועם כמה שיותר דוגמאות קוד.
...
Many 3D editors can export 3D scenes as OBJ files, these files can be easily imported into WPF project and being used to build complex 3D scenes. See how easy to import 3D scene from 3D editors....
Silverlight is great technology with powerful graphic capabilities, allows us to build RIA s with animated 2D graphics, scalable controls, media playback, uses GPU acceleration, and much more. The Silverlight application can be developed in same environment as WPF ( Blend , Visual Studio , etc), has common principles of design as WPF (XAML, Namespaces, Syntax, etc). But, still it is different and targeted for cross-platform rich-client internet applications, the project from WPF can’t be ported easily...
In resumption to my previous post “ How to import 3D model to WPF from 3D Max ” I want to present the “ XAML exporter for Blender ” ( Blender is an open-source cross-platform 3D designer). if(Blender.Name == Blend.Name) { Debug.WriteLine(“Wiiiiii !!!! :)”); } This post will guide you how to use this feature thru simple example. Software requirements for this guide: Blender 2.48a or later, Microsoft Expression Blend 2.0 (Final Release). SDK and Framework requirements: Microsoft...
I’m inviting you to take a part in testing of “ Keys Notificator ”. This is small and useful program for keyboard monitoring that can be used to monitor common keys as [Shift], [Ctrl], [Alt], [Caps Lock], [Scroll Lock] and [Num Lock]. Very useful to alert users about change in keyboard layout like language ([Alt] + [Shift] ENG <=> HEB) or capital letters. The “ Keys Notificator ” is an open-source project and is a part of my community contribution under GNU General Public License . The published...
Recently I’ve required to add Mouse-Wheel support in some of our Silverlight projects. Quickly discovered that unfortunately this feature isn’t supported in Silverlight 2.0. I found some post with sample code that solves this problem and made some changes in “MouseWheelHelper” class, also added “UIElementExtender” class that extends classes that derived from "UIElement"....
I want to present very useful feature “ XAML exporter for 3D Studio Max ”. This feature contains number of MAX-Script files with code that allows exporting 3D scenes from 3D Studio Max to XAML files. “Max2Xaml” Project on Codeplex website: http://max2xaml.codeplex.com . I’ll try to present a simple guide for this feature with some useful example. Software requirements for this guide: 3D Studio Max 2007 or later (I use 3D Studio Max 2009 ), Microsoft Expression Blend 2.0 (Final Release). SDK and Framework...
This is an update for previous post . Added new function to read entire content of Excel File: ''' <summary> ''' Reads the data from excel file. ''' </summary> ''' <param name="strFilePath"> The file path. </param> ''' <returns> DataSet </returns> Public Shared Function ReadDataFromExcelFile( ByVal strFilePath As String ) As DataSet If strFilePath Is Nothing Then Throw New NullReferenceException...
(ניתן לראות פוסט זה עם תרגום לעברית) Two weeks ago I've being asked to add a support for Hebrew texts in our last Silverlight project - "Com-Unit", this application is used by sport commentators and provides graphical presentation for real-time basketball statistics. Also displays some sportive "Trivia" about teams and players, this "Trivia" is written in Hebrew. I knew that it will lead to many problems, because MS didn't add (yet) RTL support in any version...
More Posts
Next page »