前往Shuct.Net首页

Shudepb PB反编译专家长时间以来,为业内同类软件事实上的唯一选择.细节,彰显专业.态度,决定品质.

关于PowerBuilder的搜索

Using Third-Party WPF Controls with PowerBuilder .NET 12.0 WPF Targets | SYS-CON MEDIA Advertise | Contact | About Welcome! Register | Sign-in www.sys-con.com Ulitzer Advertise Authors Topics Members Videos Webcasts Events Write An Article Advertise Authors Topics Members Videos Webcasts Events Write An Article --> SYS-CON MEDIA Authors: RealWire News Distribution, Tomohiro Iizuka, Kevin Remde, Gilad Parann-Nissany, Kyle Gabhart Related Topics: PowerBuilder, .NET PowerBuilder: Article Using Third-Party WPF Controls with PowerBuilder .NET 12.0 WPF Targets State-of-the-art graphical user interfaces are once again possible By Bruce Armstrong Article Rating: Select ratingGive it 1/5Give it 2/5Give it 3/5Give it 4/5Give it 5/5 September 10, 2010 11:15 AM EDT Reads: 6,846 Related Print Email Feedback Add This Blog This One of the things that PowerBuilder developers have been asking for years is the ability to include state-of-the-art graphic elements in their applications. With the advent of WPF Targets in PowerBuilder.NET 12.0, that capability has finally arrived. You can do quite a bit with the new layout managers, the skinning capabilities, effects, etc., directly within the IDE. For example, look at the following few lines of XAML code. The highlighted code is what I added; the rest was generated automatically by PowerBuilder.NET when I placed the commandbutton on the WPF window. <pbwpf:CommandButton Height="28" HorizontalAlignment="Left" Margin="164,176,0,0" Name="cb_1" TabOrder="20" Text="none" TextSize="-10" VerticalAlignment="Top" Width="88" PBHeight="112" PBWidth="402" X="750" Y="704" FlatStyle="False" AllowDrop="False"><pbwpf:CommandButton.BitmapEffect><BlurBitmapEffect Radius="10" KernelType="Box"/></pbwpf:CommandButton.BitmapEffect></pbwpf:CommandButton> The result is a PowerBuilder commandbutton with a blurred presentation (see Figure 1). Figure 1 I imagine however that where the move to WPF will have the most effect for most PowerBuilder developers is when they use third-party WPF controls to implement certain graphic capabilities without having to do a lot of coding of their own. In this article, we're going to look at how simple that is to do with PowerBuilder.NET. The particular third-party control I'm using for this example is the Actipro Ribbon (http://www.actiprosoftware.com/Products/DotNet/WPF/Ribbon/Default.aspx ), which allows you to add an Office 2007 like ribbon control to the windows in your WPF application. When you install the product, it would normally register the controls (both the ribbon itself and the child controls they provide to place on it) in the toolbox in the Visual Studio IDE. Since PowerBuilder.NET runs in the Isolated Shell version of the Visual Studio IDE, the controls don't get added to the toolbox automatically. That's no problem though, as it's simple to add them ourselves. First, go to the PowerBuilder.NET Toolbox, right-click on it and select "Add Tab." I renamed the new tab as "Ribbon Control". Now right-click in that new tab and select the "Choose Items..." option. That will eventually bring up the Choose Toolbox Items dialog (see Figure 2). I say eventually because that dialog is typically slow to open (in Visual Studio as well). When it does finish opening, it will be showing the ".NET Framework Components" tab by default. We need to click on the "WPF Components" tab, which will also take some time before it displays. Once that does display, you can select all of the controls provided in the Actipro assembly and hit OK. Once the controls are added to the tab in the Toolbox, you may want to arrange them in some order that makes sense to you. You can drag and drop the controls within the toolbox tab to reorder them. I like to have them sorted alphabetically, and there is a right-click mouse button menu option "Sort Items Alphabetically" that makes that real simple. You should end up with something like Figure 3. At this point, you can drag the Ribbon control onto your WPF window. Once you've done that, you have a few options with regard to how you can add child controls to the ribbon. One thing I didn't find particularly effective was dragging the controls from the toolbox onto the ribbon. That didn't seem to get the control to recognize the ribbon as its container. I also found that dragging and dropping the control from the toolbar into the XAML did allow me to place it within the ribbon container, but the "ribbon" prefix wasn't included when the control name was included in the XAML. Instead, the first two options for adding child controls are provided by the ribbon control. If you right-click on the ribbon control, or on controls within the ribbon control, you get a context-sensitive menu that allows you to add child controls (see Figure 4). Or you can also click on the small right arrow button on the top of the selected control and pull up a context-sensitive Task dialog (see Figure 5). However, after a short time I got comfortable working with the control and found that the easiest method of all was simply to edit the XAML directly. That may seem counterintuitive at first, particularly to long-time PowerBuilder people who are used to "painting" a window. However, particularly because the Intellisense is right there all the time prompting you with possible choices, it's actually quite simple once you get comfortable with it. It's particularly important when you have a lot of nesting of controls, such as you do with a ribbon control. Fortunately, since the Design and XAML panes are both available simultaneously, you can always "paint" in the Design pane and then move to the XAML pane for fine tuning when needed. Once you've got all the controls laid out, you'll want to assign image resources to the buttons. If you didn't create a "Resources" folder when you first created the target, you can add one now, then copy all of the images you're going to use into that folder. PowerBuilder.NET will automatically recognize that the images in that folder should be compiled into the assembly it generates (no more PBR files!). In the button properties, or in the XAML itself, I simply referred to the images files using a relative reference to the Resources folder: <ribbon:Button ImageSourceSmall="/Resources/Bold.png" Name="boldbutton"/> For the most part, I'm using 16x16 alpha blended PNG files. Some are from the glyFX free set (http://www.glyfx.com/products/free_ce.html) and the rest are from the Glyfz Office 2007 Ribbon Bar Icons, Word Processing Set 1 (http://www.glyfz.com/glyfz2007.htm), which I did have to buy but it cost less than $40. The end result should look something like Figure 6 (note that I don't have images for all the buttons yet). That's all well and good, but at some point we want to put some code behind those fancy graphics. Here's where it gets real interesting. When you code WPF in Visual Studio, you need to implement some form of Event Routing to respond to actions on the controls (see Routing Events Overview: http://msdn.microsoft.com/en-us/library/ms742806.aspx). As you would expect from a 4GL, PowerBuilder.NET makes it a lot easier. Simply name the controls that you want to code events on (making sure that the name is entirely in lower case). XAML doesn't require you to name controls, but once you do give the control an all lowercase name, PowerBuilder.NET will recognize that you want to code events on it. At that point, go to the Script painter for the window, and you'll find that the first dropdown with the list of controls in the window suddenly has the control you just named in it. Select that control, and you'll find that the second dropdown lists all of the events that the control can generate. Simply find the event you want to respond to and add your code (see Figure 7). For this demonstration, I'm adding code to the PreviewMouseLeftButtonDown event that gets fired when the user clicks on one of the buttons in my ribbon control, specifically the bold button (named boldbutton). That's all there is to it. State-of-the-art graphical user interfaces are once again possible with PowerBuilder. The only limitation now is your imagination. Published September 10, 2010 &#150; Reads 6,846 Copyright &copy; 2010 SYS-CON Media, Inc. &mdash; All Rights Reserved. Syndicated stories and blog feeds, all rights reserved by the author. Related Print Email Feedback Add This Blog This More Stories By Bruce Armstrong Bruce Armstrong is a development lead with Integrated Data Services (www.get-integrated.com). A charter member of TeamSybase, he has been using PowerBuilder since version 1.0.B. He was a contributing author to SYS-CON's PowerBuilder 4.0 Secrets of the Masters and the editor of SAMs' PowerBuilder 9: Advanced Client/Server Development. Comments (0) Share your thoughts on this story. Add your comment You must be signed in to add a comment. Sign-in | Register In accordance with our Comment Policy, we encourage comments that are on topic, relevant and to-the-point. We will remove comments that include profanity, personal attacks, racial slurs, threats of violence, or other inappropriate material that violates our Terms and Conditions, and will block users who make repeated violations. We ask all readers to expect diversity of opinion and to treat one another with dignity and respect. Please wait while we process your request... Your feedback has been submitted for approval. CommentsNew Release of Quest Toad for Oracle Offers Enhancements to Reduce Risk By Liz McMillanyourfanat wrote: I am using another tool for Oracle developers - dbForge Studio for Oracle. This IDE has lots of usefull features, among them: oracle designer, code competion and formatter, query builder, debugger, profiler, erxport/import, reports and many others. The latest version supports Oracle 12C. More information here.Oct. 22, 2013 02:57 AM EDTread more & respond &raquo; Did you read today's front page stories & breaking news? Live Google News by SYS-CON! --> Breaking Java NewsWRScompass Expands Presence in TexasGlobal Non-ferrous Metals Market 2014-2018Michigan Business and Professional Association To Honor Top Women LeadersMedia Alert: Gartner Announces Business Intelligence & Analytics Summit 2014Elevator and Escalator Market in Saudi Arabia 2014-2018Amara Mining PLC: Notification of Major Interest in Shares CSE: 2014-0110-Consolidation-Kariana Resources Inc. (KAA) Florence Copper to generate $3.3 billion in economic activity in Arizona over operational lifeCSE: 2014-0110-Consolidation-Kariana Resources Inc. (KAA)Kellogg Company 2013 Full-Year & Fourth Quarter Results Conference Call / Webcast Cloud Expo Home Register Keynotes Speakers Sessions Schedule Exhibitors Sponorship Info Conference Info Hotel Info Press Registration Call For Papers Media Sponsors Advisory Board Volunteers Is Your Business 100% Ready for the New Era of Cloud Computing and Big Data? The Only Enterprise IT Event in 2013 Covering the Entire Scope of both Cloud & Big Data Come to New York and get yourself up to date with the Big Data revolution! As advanced data storage, access and analytics technologies aimed at handling high-volume and/or fast moving data all move center stage, aided by the Cloud Computing boom, Cloud Expo is the single most effective event for you to learn how to use you own enterprise data – processed in the Cloud – most effectively to drive value for your business. There is little doubt that Big Data solutions will have an increasing role in the Enterprise IT mainstream over time. Get a jump on that rapidly evolving trend at Big Data Expo, which we are introducing in November at Cloud Expo New York. "Cloud" has become synonymous with "computing" and "software" in two short years. Cloud Expo is the new PC Expo, Comdex, and InternetWorld of our decade. By 2012, more than 50,000 delegates per year will participate in Cloud Expo worldwide. The cloud is certainly a compelling alternative to running all applications within a traditional corporate data center. But moving from theory into practice is where things get complicated, and this is where attending a top industry event like Cloud Expo comes in. No one can take full advantage of cloud computing without first becoming familiar with the latest issues and trends, which is why the organizing principle of the 10th International Cloud Expo on June 10-12, 2014 - is to ensure - through an intensive three-day schedule of keynotes, general and breakout sessions, and our bustling Expo Floor - that attending delegates leave the Javits Center with abundant resources, ideas and examples they can apply immediately to leveraging the Cloud, helping them to maximize performance, minimize cost and improve the scalability of their Enterprise IT endeavors. Delegates will leave Cloud Expo with dramatically increased understanding the entire scope of the entire cloud computing spectrum from storage to security. Whether you're an enterprise or small to medium business, you'll soon be benefiting from the Cloud. Join your peers in New York June 10-12, and maximize those benefits already in 2014. See you in New York! Register Now! Save $500 on your &ldquo;Golden Pass&rdquo;! Call 201.802.3020 or click here to Register Early Bird Expires Friday. Speaker Opportunities Submit your speaking proposal for the upcoming Cloud Expo in New York [June 10-12, 2014] Exhibitor Info Please Call 201.802.3021 events (at) sys-con.com. Carmen Gonzalez, carmen (at) sys-con.com. Produced and presented by Cloud Expo, Inc. --> Terms of Use & Our Privacy Statement - About Newsfeeds / Videofeeds. Copyright &copy;1994-2014 Ulitzer, Inc. All Rights Reserved. All marks are trademarks of Ulitzer, Inc. Reproduction in whole or in part in any form or medium without express written permission of Ulitzer, Inc. is prohibited.