Presentation is loading. Please wait.

Presentation is loading. Please wait.

Amazing UI Modernization Using Telerik UI for WinForms

Similar presentations


Presentation on theme: "Amazing UI Modernization Using Telerik UI for WinForms"— Presentation transcript:

1 Amazing UI Modernization Using Telerik UI for WinForms
Shelley Chase Senior Software Architect, Progress Software Swathi Yellavaram QA Engineer, Principal 3, Progress Software November 2015

2 Agenda OpenEdge Product: GUI for .NET Progress Developer Studio Visual Designer Telerik Product: UI for WinForms Showcasing Telerik UI for WinForms Q & A

3 What is the OpenEdge GUI for .NET?
Modern UI for OpenEdge applications using Microsoft WinForms Desktop enterprise business applications Microsoft and third-party control providers results in hundreds of UI components Data-centric UI controls ADO.NET maps well to OpenEdge ProDataSet™ Visual Designer in Progress Developer Studio for OpenEdge WAIT-FOR event model for .NET forms More than just GUI – supports .NET classes Expands your ABL program with .NET libraries .NET object-oriented programming directly in ABL

4 Modernize at your own pace
The Power of GUI for .NET Utilize existing skills – ABL and Progress Developer Studio for OpenEdge Full access to .NET classes in ABL ABL enhanced to support .NET programming model Drag-and-drop WYSIWYG designer in PDS for OE Modernize at your own pace Mix new windows with existing classic GUI windows Create new navigation and menu system as MDI container Migrate most important windows first, other windows over time WinForms wrapper provided for classic GUI windows WinForms container provided for embedded windows ABL Language Built-in data binding using ABL data sources Event handlers written in ABL for .NET UI events Reuse your existing business logic Work with your ABL GUI windows allowing you to adopt at your own pace. OpenEdge Architect Development environment you already know No need to purchase, learn or use non-OpenEdge products (Visual Studio®)

5 ABL Extensions to .NET Classes
Progress.Windows.Form Extends .NET Form class: System.Windows.Forms.Form Progress.Windows.OERadForm Extends Telerik .NET Form class: Telerik.WinControls.UI.RadForm Several extensions to Progress GUI environment… our “secret sauce” Extends form so Progress GUI windows can work with .NET forms DataBindingSource extends .NET binding source so that it can supply ABL data to a .NET control Can bind to query for ProDataSet, temp table, DB table… supports batching Events… Added a “subscribe” method that allows you to provide an ABL method or procedure name

6 Additional ABL Extensions to support GUI for .NET
Progress.Data.BindingSource Extends .NET System.Windows.Forms.BindingSource class Binds .NET control to ABL data source (query) ABL Subscribe method added for every .NET UI event Takes an ABL method or procedure name myForm:FormClosing:Subscribe(FormClosing_Handler). METHOD PRIVATE VOID FormClosing_Handler( sender AS System.Object, e AS System.Windows.Forms.FormClosingEventArgs): // your code here END METHOD. Enhanced WAIT-FOR for .NET Waits for .NET application, .NET form or .NET modal dialog Several extensions to Progress GUI environment… our “secret sauce” Extends form so Progress GUI windows can work with .NET forms DataBindingSource extends .NET binding source so that it can supply ABL data to a .NET control Can bind to query for ProDataSet, temp table, DB table… supports batching Events… Added a “subscribe” method that allows you to provide an ABL method or procedure name

7 Visual Designer for GUI for .NET
Progress Developer Studio for OpenEdge

8 GUI for .NET in Progress Developer Studio
New project type and perspective Creates an empty form class Creates a run procedure Includes .NET assembly references

9 Visual Designer in Progress Developer Studio (like Microsoft Visual Studio)

10 Visual Designer in Progress Developer Studio (like Microsoft Visual Studio)
Design Canvas for Form

11 Visual Designer in Progress Developer Studio (like Microsoft Visual Studio)
Toolbox

12 Visual Designer in Progress Developer Studio (like Microsoft Visual Studio)
Properties/Events

13 Live Demo Progress Developer Studio for OpenEdge
Visual Designer for GUI for .NET

14 Telerik UI for WinForms

15 Telerik UI for WinForms - Enterprise Development for Windows Desktops
Enterprise Business Applications Vibrant Dashboards Touch Enabled Applications

16 Features of Telerik UI for WinForms

17 Telerik UI for WinForms
110+ Powerful UI Controls ( Editors, Grid, RichTextBox, Scheduler) Highly Optimized Performance Powerful Data Engine – Blazing fast data loading and updates Virtualization – Cells/rows and Columns Minimized repainting and layout rearrangements Build Touch-Enabled Apps (Windows 7+) Multi-touch API fully supports touch gestures Touch-Enabled Controls (GridView, TreeView, Panorama) Metro UI (Windows Store Apps) Theme

18 UI for WinForms in Progress Developer Studio
Telerik controls in toolbox for drag-and-drop UI design Code generated automatically for you Assemblies.xml automatically updated ProBindingSource component provides data binding from Telerik controls to OpenEdge data ABL Query mapped to UI component C# code samples translate to ABL “relatively easy”

19 Telerik Presentation Framework (TPF)
WPF-like features within .NET WinForms applications Stunning UI supports Scaling, Rotation, Animations, Transparency Flash-like Animations Superior Performance Rich Text Formatting through HTML Unlimited Nesting of UI Elements Granular Customization of All Elements Custom Controls Theme Support

20 TPF Offers Full Theme Support
Use predefined themes or build new ones from scratch Apply themes across all of the WinForms controls Themes available as standalone components Drag and drop control skinning directly from Toolbox Stand-alone Visual Theme Builder Set Properties Inherit Properties Animate Changes Save modified themes

21 Live Demo Movie Rental Sample
UI for WinForm controls in Progress Developer Studio

22 UI Modernization in AutoEdge

23 Sample Transformation – AutoEdge GUI Classic
Schedule Test Drives File menu Employee TreeView Single select Date picker using arrows Appointment List Test Drive menu item to schedule appointments

24 Sample Transformation – AutoEdge GUI for .NET
Schedule Test Drives RadRibbonBar RadTreeView Select dealer Employees for dealer RadScheduler Select date View many employees Direct edits on calendar Add appointment Edit existing one

25 Sample Transformation – Side-by-side

26 Infragistics and Telerik Control Sets
Both Control sets are fully integrated and supported Trial version of Telerik Controls in 11.6 Telerik is part of Progress and wants to focus on OpenEdge use cases Telerik offers: 1,400,000+ registered users Active forums, blogs, videos, webinars, code libraries Extensive product documentation & targeted demos Industry Leading Support

27 Modern, competitive desktop UI built entirely with OpenEdge
In Summary Modern, competitive desktop UI built entirely with OpenEdge WYSIWYG Visual designer “Unlimited” set of .NET controls available Data-binding using ProBindingSource ABL event handlers and dynamic UI programming Using existing business logic and leverages what you know Any architecture supported (client-server, “fat” client, n-tier) ABL events, business logic, data constructs, queries Built-in migration path with existing GUI windows Event-driven programming you know (WAIT-FOR) Telerik UI for WinForms takes GUI for .NET to the next level! My first demo showed you can create a modern, competitive, comprehensive application within OpenEdge tools and language. You don’t have to leave Architect to build your application. There is a wealth of .NET controls available from very simple to very complex and purposed components. The Visual Designer allow you to create your UI using drag and drop features so you do not have to leave all the complexities of programming against the .NET controls. The Visual Designer automatically generates ABL code. The ABL GUI and GUI for .NET work together so you can migrate over time rather than having to redo all of your user interface at one time. Data binding is easy to do using the ProBindingSource object. Existing ABL data sources are used directly so there is no duplication of data. And finally your investment in your ABL business logic is not lost by going to the GUI for .NET.

28 Questions & Answers

29 Change color

30 ABL Mix and Match UI for Migration
Migrate at your own pace .NET forms and OpenEdge GUI windows can co-exist in same session One can parent the other All functionality maintained independently OpenEdge GUI windows can be embedded in .NET forms Client area managed in ABL Other functionality managed in .NET Progress.Windows.MDIChildForm Progress.Windows.WindowContainer As you saw in the demo, .NET forms and GUI windows can exist within the same application and can actually interact with each other. For example, one can parent the other and your existing GUI windows can be kept without any code changes. Another alternative is to provide a dashboard in GUI for .NET, create your main windows in GUI for .NET and embed you GUI windows as MDI children of the dashboard. In this scenario you need to consolidate your menus, status areas, etc. but the main client area can be left untouched.

31 New GUI for .NET Application
MDI Container Ribbon Outlook NavPane

32 Harvest Existing Windows
Window contents and triggers Add 2 lines of code Menu not re-used

33 Embed in New Form

34 Visual Designer in Progress Developer Studio
Toolbox Form Properties view

35 Visual Designer Toolbox .NET WinForm Properties & Events Selected Property or Event .NET Controls


Download ppt "Amazing UI Modernization Using Telerik UI for WinForms"

Similar presentations


Ads by Google