Mastering Windows Presentation Foundation Second Edition

Total Page:16

File Type:pdf, Size:1020Kb

Mastering Windows Presentation Foundation Second Edition Mastering Windows Presentation Foundation Second Edition Build responsive UIs for desktop applications with WPF Sheridan Yuen BIRMINGHAM - MUMBAI Mastering Windows Presentation Foundation Second Edition Copyright © 2020 Packt Publishing All rights reserved. No part of this book may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written permission of the publisher, except in the case of brief quotations embedded in critical articles or reviews. Every effort has been made in the preparation of this book to ensure the accuracy of the information presented. However, the information contained in this book is sold without warranty, either express or implied. Neither the author(s), nor Packt Publishing or its dealers and distributors, will be held liable for any damages caused or alleged to have been caused directly or indirectly by this book. Packt Publishing has endeavored to provide trademark information about all of the companies and products mentioned in this book by the appropriate use of capitals. However, Packt Publishing cannot guarantee the accuracy of this information. Commissioning Editor: Kunal Chaudhari Acquisition Editor: Denim Pinto Content Development Editor: Rosal Colaco Senior Editor: Storm Mann Technical Editor: Pradeep Sahu Copy Editor: Safis Editing Project Coordinator: Francy Puthiry Proofreader: Safis Editing Indexer: Priyanka Dhadke Production Designer: Alishon Mendonsa First published: February 2017 Second edition: March 2020 Production reference: 1270320 Published by Packt Publishing Ltd. Livery Place 35 Livery Street Birmingham B3 2PB, UK. ISBN 978-1-83864-341-6 www.packt.com www.EBooksWorld.ir Packt.com Subscribe to our online digital library for full access to over 7,000 books and videos, as well as industry leading tools to help you plan your personal development and advance your career. For more information, please visit our website. Why subscribe? Spend less time learning and more time coding with practical eBooks and Videos from over 4,000 industry professionals Improve your learning with Skill Plans built especially for you Get a free eBook or video every month Fully searchable for easy access to vital information Copy and paste, print, and bookmark content Did you know that Packt offers eBook versions of every book published, with PDF and ePub files available? You can upgrade to the eBook version at www.packt.com and as a print book customer, you are entitled to a discount on the eBook copy. Get in touch with us at [email protected] for more details. At www.packt.com, you can also read a collection of free technical articles, sign up for a range of free newsletters, and receive exclusive discounts and offers on Packt books and eBooks. Contributors About the author Sheridan Yuen is a Microsoft .NET MCTS and Oracle Java SCJP certified software developer, living in London, England. His passion for coding made him stand out from the crowd right from the start. Since his second year at university, he was employed as a teaching assistant for the first year student coding workshops and has been returning as a guest lecturer. Among other prestigious positions, he was the primary software developer for the Ministry of Sound group for four years, working on their main music business application, responsible for creating their multi-award-winning albums. This application managed to increase its users' productivity by up to 80% in some cases. In addition to this, he architected a unique ticket scanning application for their award- winning nightclub, making it the first club in the world to introduce scanned ticket entry across all streams for their clients. Coming from a musical background and being a qualified audio engineer, with experience of record production and digital audio, this post was a perfect union. He soon became a popular figure in the C# and WPF sections of the Stack Overflow, "question and answer" website, being awarded enough reputation by the community members to raise him too well within the top half percent of all users. While authoring this book and other projects has kept him away for some time, he is keen to return to continue to help new users to get to grips with WPF. About the reviewer Alex Drenea is an experienced software developer and architect with more than 15 years of experience working in various environments from enterprise to start-up. He has worked extensively with WFP since its inception in 2006 when it was still called Avalon and led teams at IBM building large scale WPF customer and enterprise applications. Following that, he continued his journey by building on his WPF knowledge to become a Windows Phone and UWP developer and published more than 20 applications in the Windows store, with over half a million downloads. For his community contributions in the Windows platform, and recently in the Azure Data platform, he has been recognized as Microsoft MVP since 2016. Packt is searching for authors like you If you're interested in becoming an author for Packt, please visit authors.packtpub.com and apply today. We have worked with thousands of developers and tech professionals, just like you, to help them share their insight with the global tech community. You can make a general application, apply for a specific hot topic that we are recruiting an author for, or submit your own idea. Table of Contents Preface 1 Chapter 1: A Smarter Way of Working with WPF 7 What is MVVM and how does it help? 8 Models 8 View Models 9 Views 10 Data binding 10 So how does MVVM help? 10 Is there a downside? 11 Debunking the myth about code behind 12 Learning how to communicate again 13 Introducing the ICommand interface 15 Handling events in Attached Properties 18 Making use of delegates 20 Structuring the application code base 23 Summary 33 Chapter 2: Debugging WPF Applications 34 Utilizing the output window 35 Putting Presentation Trace Sources to work 37 Discovering inner exceptions 43 Debugging data bound values 46 Outputting values to UI controls 47 Catching changing Dependency Property values 47 Exploiting converters 49 Summary 51 Chapter 3: Writing Custom Application Frameworks 52 What is an application framework? 52 Encapsulating common functionality 53 In base classes 58 Through interfaces 61 With Extension Methods 65 In UI controls 70 With converters 74 Constructing a custom application framework 82 Separating the Data Access Layer 99 Providing services 105 Implementing Dependency Injection 108 Table of Contents Connecting Views with View Models 117 Locating View Models 119 Summary 125 Chapter 4: Becoming Proficient with Data Binding 126 Data binding basics 126 Binding path syntax 127 Escaping invalid characters 130 Exploring the Binding class 131 Directing data bound traffic 134 Binding to different sources 135 Binding with priority 139 Binding from within control templates 140 Binding source changes 141 Converting data bound values 142 Binding multiple sources to a single target property 148 Dependency Properties 152 Setting metadata 155 Declaring read-only Dependency Properties 159 Registering Attached Properties 160 Prioritizing value setting sources 162 Data templates 168 Taking complete control 172 Displaying hierarchical data 175 Data binding to enumeration collections 179 Summary 182 Chapter 5: Using the Right Controls for the Job 183 Investigating the built-in controls 183 Inheriting framework abilities 184 Laying it on the line 186 Containing controls 187 Canvas 188 DockPanel 190 Grid 193 StackPanel 199 UniformGrid 201 WrapPanel 203 Providing custom layout behavior 205 Content controls 208 Presenting content 209 Items controls 211 Adorners 217 Modifying existing controls 223 Styling 223 Being resourceful 225 Merging resources 228 [ ii ] Table of Contents Triggering changes 231 Templating controls 237 Attaching properties 243 Combining controls 246 Creating custom controls 250 Summary 258 Chapter 6: Adapting the Built-In Controls 259 Inspecting protected methods 259 Clipping the layout 265 Altering default behavior 268 Creating overridable methods 276 Tailoring to attain our requirements 278 Populating with Data 281 Progressing toward the Target 287 Highlighting the selection 292 Indicating in the Axes 292 Emphasizing the Selection 299 Summary 309 Chapter 7: Mastering Practical Animations 310 Investigating timelines 310 Introducing key-frames 320 Telling stories 324 Controlling storyboards 326 Easing functions 334 Animating along a path 340 Creating everyday animations 341 Summary 357 Chapter 8: Creating Visually Appealing User Interfaces 358 Styling applications consistently 358 Overriding default control styles 359 Using professional icons 361 Layering visuals 363 Throwing shadows 363 Declaring multiple borders 364 Reusing composite visuals 366 Reflecting light 368 Creating glowing effects 370 Putting it all together 372 Moving away from the ordinary 375 Casting reflections 375 Exploring borderless windows 378 Visualizing data 386 Livening up the UI controls 402 [ iii ] Table of Contents Summary 414 Chapter 9: Implementing Responsive Data Validation 415 Using validation rules – to do or not to do? 416 Getting to grips with validation interfaces 417 Implementing the IDataErrorInfo interface 417 Introducing the INotifyDataErrorInfo interface 434 Annotating data 443 Varying levels of validation 447 Incorporating multiple validation techniques 449 Customizing the error template 454 Avoiding UI-based validation errors 457 Keeping Synchronized with Legacy Behavior 463 Amalgamating validation and visuals
Recommended publications
  • In Silico Docking Analysis of CCL28 (CC Motif Chemokine Ligand
    F1000Research 2019, 8:313 Last updated: 21 SEP 2021 RESEARCH ARTICLE In silico docking analysis of CCL28 (C-C motif chemokine ligand 28) and astragalin as the potential inhibitor of rheumatoid arthritis [version 1; peer review: 1 approved, 1 approved with reservations] Sadaf Noor, Syeda Tahira Qousain, Syed Aun Muhammad Institute of Molecular Biology and Biotechnology, Bahauddin Zakariya University, Multan, Punjab, 60800, Pakistan v1 First published: 20 Mar 2019, 8:313 Open Peer Review https://doi.org/10.12688/f1000research.18541.1 Latest published: 20 Mar 2019, 8:313 https://doi.org/10.12688/f1000research.18541.1 Reviewer Status Invited Reviewers Abstract Background: Rheumatoid arthritis is an inflammatory and chronic 1 2 disease of the joints affecting 1% of the world’s population. Women are three times more likely to be affected than men. Many drugs are version 1 being used for the treatment of rheumatoid arthritis but they often 20 Mar 2019 report report have severe side effects. C-C motif chemokine ligand 28 (CCL28) recruits leukocytes and other proinflammatory factors to the site of 1. Ihsan Ul Haq, Quaid-i-Azam University, joint inflammation. The purpose of the present research is the computational evaluation of astragalin, a natural flavonoid extracted Islamabad, Pakistan from black tea, as an inhibitor of CCL28 by in silico docking. 2. Sagarika Biswas, Institute of Genomics and Methods: The three-dimensional structure of CCL28 to act as a molecular target was obtained from the Protein Data Bank (PDB ID: Integrative Biology, New Delhi, India 6CWS). The quality of the CCL28 structure was assessed using Phyre2 and Molecular Operating Environment (MOE) software was used for Any reports and responses or comments on the binding affinity analysis.
    [Show full text]
  • IP Log for Eclipse.Platform Release 4.0, July 2010 Licenses
    IP Log for eclipse.platform Release 4.0, July 2010 Licenses • Eclipse Public License v1.0 Third-Party Code CQ Third-Party Code License Use ICU4J (core and extended ICU4J License (X License, 1065 function) and ICU4J MIT Style) Replacement plug-in Version: 3.6 ICU4J License (X License, 1116 ICU4J Version: 3.4.5.20061213 MIT Style) 1153 JSch 0.1.31 Version: 0.1.31 New BSD license Apache Lucene Version: 1.9.1 243 (Core+Contrib Analyzers Apache License, 2.0 Analysis Src) 257 APT Version: 1 New BSD license Mozilla Public License 1.1 (MPL), MIT Style with No 262 Cairo Version: 1.0.2 Endorsement Clause, Historical Permissive Notice & Disclaimer ICU4J License (X License, 280 ICU4J Version: 3.4 MIT Style) ICU4J License (X License, 281 ICU4J Version: 3.4.3 MIT Style) 293 jsch Version: 0.1.28 New BSD license 308 PNG unload Version: 1 MIT license 1232 Apache Ant Version: 1.7.0 Apache License, 2.0 ICU4J and ICU4J Replacement ICU4J License (X License, 1367 Version: 3.6.1 MIT Style) Olsen time zone data Version: 1368 Public Domain 2007e Work derived from IJG JPEG 1596 IJG License Version: Release 6b,337 unmodified 1826 JSch 0.1.35 New BSD license source & binary ICU4J and ICU4J replacement MIT License with "no unmodified 1919 Version: 3.8.1 edorsement" clause source & binary unmodified 2014 jsch Version: 0.1.37 New BSD license source & binary XHTML DTDs Version: unmodified 2044 W3C Document License Versions 1.0 and 1.1 (PB CQ331) source org.apache.ant Version: 1.6.5 2404 (ATO CQ1013) (using Orbit Apache License, 2.0 CQ2209) org.apache.lucene Version: 1.4.3 2405 (Core Source Only) (ATO Apache License, 2.0 CQ1014) (using Orbit CQ2210) Junit Version: 3.8.2 (ATO 2406 Common Public License 1.0 CQ299) (using Orbit CQ2206) Historical support for Java SSH modified 2410 Applet + Blowfish Version - v.
    [Show full text]
  • The GNOME Desktop Environment
    The GNOME desktop environment Miguel de Icaza ([email protected]) Instituto de Ciencias Nucleares, UNAM Elliot Lee ([email protected]) Federico Mena ([email protected]) Instituto de Ciencias Nucleares, UNAM Tom Tromey ([email protected]) April 27, 1998 Abstract We present an overview of the free GNU Network Object Model Environment (GNOME). GNOME is a suite of X11 GUI applications that provides joy to users and hackers alike. It has been designed for extensibility and automation by using CORBA and scripting languages throughout the code. GNOME is licensed under the terms of the GNU GPL and the GNU LGPL and has been developed on the Internet by a loosely-coupled team of programmers. 1 Motivation Free operating systems1 are excellent at providing server-class services, and so are often the ideal choice for a server machine. However, the lack of a consistent user interface and of consumer-targeted applications has prevented free operating systems from reaching the vast majority of users — the desktop users. As such, the benefits of free software have only been enjoyed by the technically savvy computer user community. Most users are still locked into proprietary solutions for their desktop environments. By using GNOME, free operating systems will have a complete, user-friendly desktop which will provide users with powerful and easy-to-use graphical applications. Many people have suggested that the cause for the lack of free user-oriented appli- cations is that these do not provide enough excitement to hackers, as opposed to system- level programming. Since most of the GNOME code had to be written by hackers, we kept them happy: the magic recipe here is to design GNOME around an adrenaline response by trying to use exciting models and ideas in the applications.
    [Show full text]
  • A Highly Interactive Expert System for Outside Plant Engineering
    From: IAAI-93 Proceedings. Copyright © 1993, AAAI (www.aaai.org). All rights reserved. OPERA: A Highly Interactive Expert System for Outside Plant Engineering Gary Lazarus, Lien ‘Ihn and Marty Baade Expert Systems Laboratory NYNEX Science & Technology 500 Westchester Avenue White Plains, NY 10604 [email protected] Abstract system that contains more engineering expertise than OPERA is an expert system developed at the Expert any single engineer in the telephone companies. Systems Laboratory at NYNEX Science & Technology to As is the case in most high technology fields, assist outside plant telecommunications engineers in the outside plant engineers routinely see new products, or planning and implementation of sophisticated electronic refinements and enhancements to existing ones. The equipment. The engineer communicates with the system via underlying first order principles of engineering are intelligent documents that are schematic in their design and complex and not necessarily fully understood by all dynamic in their operation to facilitate the conveyance of necessary and sufficient information. Expertise from the top engineers charged with the responsibility of turning up experts in the company was culled and built into the system working systems. Engineers who immerse themselves in to create an expert system that surpasses the engineering the latest technology can perform very well. But, the knowledge of any single engineer in the company. The effort required to maintain that ability is significant. domain and project objectives are discussed, the system OPERA (Outside Plant Engineering and Resource architecture and development, testing, deployment and Administration), therefore, must provide a reasoning maintenance issues are presented and the use of artificial mechanism that emulates the best engineers and be intelligence techniques is justified.
    [Show full text]
  • Testing X/Motif Applications
    TTeessttiinngg XX//MMoottiiff AApppplliiccaattiioonnss Achieving Quality Goals Through Automated GUI Testing Integrated Computer Solutions Incorporated The User Interface Company™ Phone: 617.621.0060 Email: [email protected] www.ics.com Automated Testing of X-Window Applications Choosing the Ideal Tool for Automated GUI Testing Table of Contents Overview............................................................................................................................. 3 The importance of GUI testing ........................................................................................... 3 Exploratory testing.......................................................................................................... 3 Regression testing ........................................................................................................... 3 Boundary testing ............................................................................................................. 4 Stress testing ................................................................................................................... 4 GUI Testing Tools .............................................................................................................. 4 Developing initial GUI tests ............................................................................................... 5 Using a GUI test tool during exploration............................................................................ 6 Basic scripting....................................................................................................................
    [Show full text]
  • Decwindows Motif for Openvms Installation Guide
    VSI OpenVMS DECwindows Motif for OpenVMS Installation Guide Document Number: DO-DDWINS-01A Publication Date: October 2019 Revision Update Information: This is a new manual. Operating System and Version: VSI OpenVMS Integrity Version 8.4-1H1 VSI OpenVMS Alpha Version 8.4-2L1 Software Version: DECwindows Motif for OpenVMS Version 1.7F VMS Software, Inc., (VSI) Bolton, Massachusetts, USA DECwindows Motif for OpenVMS Installation Guide Copyright © 2019 VMS Software, Inc. (VSI), Bolton, Massachusetts, USA Legal Notice Confidential computer software. Valid license from VSI required for possession, use or copying. Consistent with FAR 12.211 and 12.212, Commercial Computer Software, Computer Software Documentation, and Technical Data for Commercial Items are licensed to the U.S. Government under vendor's standard commercial license. The information contained herein is subject to change without notice. The only warranties for VSI products and services are set forth in the express warranty statements accompanying such products and services. Nothing herein should be construed as constituting an additional warranty. VSI shall not be liable for technical or editorial errors or omissions contained herein. HPE, HPE Integrity, HPE Alpha, and HPE Proliant are trademarks or registered trademarks of Hewlett Packard Enterprise. The VSI OpenVMS documentation set is available on DVD. ii DECwindows Motif for OpenVMS Installation Guide Preface ....................................................................................................................................
    [Show full text]
  • Multiplatformní GUI Toolkity GTK+ a Qt
    Multiplatformní GUI toolkity GTK+ a Qt Jan Outrata KATEDRA INFORMATIKY UNIVERZITA PALACKÉHO V OLOMOUCI GUI toolkit (widget toolkit) (1) = programová knihovna (nebo kolekce knihoven) implementující prvky GUI = widgety (tlačítka, seznamy, menu, posuvník, bary, dialog, okno atd.) a umožňující tvorbu GUI (grafického uživatelského rozhraní) aplikace vlastní jednotný nebo nativní (pro platformu/systém) vzhled widgetů, možnost stylování nízkoúrovňové (Xt a Xlib v X Windows System a libwayland ve Waylandu na unixových systémech, GDI Windows API, Quartz a Carbon v Apple Mac OS) a vysokoúrovňové (MFC, WTL, WPF a Windows Forms v MS Windows, Cocoa v Apple Mac OS X, Motif/Lesstif, Xaw a XForms na unixových systémech) multiplatformní = pro více platforem (MS Windows, GNU/Linux, Apple Mac OS X, mobilní) nebo platformově nezávislé (Java) – aplikace může být také (většinou) událostmi řízené programování (event-driven programming) – toolkit v hlavní smyčce zachytává události (uživatelské od myši nebo klávesnice, od časovače, systému, aplikace samotné atd.) a umožňuje implementaci vlastních obsluh (even handler, callback function), objektově orientované programování (objekty = widgety aj.) – nevyžaduje OO programovací jazyk! Jan Outrata (Univerzita Palackého v Olomouci) Multiplatformní GUI toolkity duben 2015 1 / 10 GUI toolkit (widget toolkit) (2) language binding = API (aplikační programové rozhraní) toolkitu v jiném prog. jazyce než původní API a toolkit samotný GUI designer/builder = WYSIWYG nástroj pro tvorbu GUI s využitím toolkitu, hierarchicky skládáním prvků, z uloženého XML pak generuje kód nebo GUI vytvoří za běhu aplikace nekomerční (GNU (L)GPL, MIT, open source) i komerční licence např. GTK+ (C), Qt (C++), wxWidgets (C++), FLTK (C++), CEGUI (C++), Swing/JFC (Java), SWT (Java), JavaFX (Java), Tcl/Tk (Tcl), XUL (XML) aj.
    [Show full text]
  • Pygtk 2.0 Tutorial
    PyGTK 2.0 Tutorial John Finlay October 7, 2012 PyGTK 2.0 Tutorial by John Finlay Published March 2, 2006 ii Contents 1 Introduction 1 1.1 Exploring PyGTK . .2 2 Getting Started 5 2.1 Hello World in PyGTK . .7 2.2 Theory of Signals and Callbacks . .9 2.3 Events . 10 2.4 Stepping Through Hello World . 11 3 Moving On 15 3.1 More on Signal Handlers . 15 3.2 An Upgraded Hello World . 15 4 Packing Widgets 19 4.1 Theory of Packing Boxes . 19 4.2 Details of Boxes . 20 4.3 Packing Demonstration Program . 22 4.4 Packing Using Tables . 27 4.5 Table Packing Example . 28 5 Widget Overview 31 5.1 Widget Hierarchy . 31 5.2 Widgets Without Windows . 34 6 The Button Widget 35 6.1 Normal Buttons . 35 6.2 Toggle Buttons . 38 6.3 Check Buttons . 40 6.4 Radio Buttons . 42 7 Adjustments 45 7.1 Creating an Adjustment . 45 7.2 Using Adjustments the Easy Way . 45 7.3 Adjustment Internals . 46 8 Range Widgets 49 8.1 Scrollbar Widgets . 49 8.2 Scale Widgets . 49 8.2.1 Creating a Scale Widget . 49 8.2.2 Methods and Signals (well, methods, at least) . 50 8.3 Common Range Methods . 50 8.3.1 Setting the Update Policy . 50 8.3.2 Getting and Setting Adjustments . 51 8.4 Key and Mouse Bindings . 51 8.5 Range Widget Example . 51 9 Miscellaneous Widgets 57 9.1 Labels . 57 9.2 Arrows . 60 9.3 The Tooltips Object .
    [Show full text]
  • Building a 3D Graphic User Interface in Linux
    Freescale Semiconductor Document Number: AN4045 Application Note Rev. 0, 01/2010 Building a 3D Graphic User Interface in Linux Building Appealing, Eye-Catching, High-End 3D UIs with i.MX31 by Multimedia Application Division Freescale Semiconductor, Inc. Austin, TX To compete in the market, apart from aesthetics, mobile Contents 1. X Window System . 2 devices are expected to provide simplicity, functionality, and 1.1. UI Issues . 2 elegance. Customers prefer attractive mobile devices and 2. Overview of GUI Options for Linux . 3 expect new models to be even more attractive. For embedded 2.1. Graphics Toolkit . 3 devices, a graphic user interface is essential as it enhances 2.2. Open Graphics Library® . 4 3. Clutter Toolkit - Solution for GUIs . 5 the ease of use. Customers expect the following qualities 3.1. Features . 5 when they use a Graphical User Interface (GUI): 3.2. Clutter Overview . 6 3.3. Creating the Scenegraph . 7 • Quick and responsive feedback for user actions that 3.4. Behaviors . 8 clarifies what the device is doing. 3.5. Animation by Frames . 9 • Natural animations. 3.6. Event Handling . 10 4. Conclusion . 10 • Provide cues, whenever appropriate, instead of 5. Revision History . 11 lengthy textual descriptions. • Quick in resolving distractions when the system is loading or processing. • Elegant and beautiful UI design. This application note provides an overview and a guide for creating a complex 3D User Interface (UI) in Linux® for the embedded devices. © Freescale Semiconductor, Inc., 2010. All rights reserved. X Window System 1 X Window System The X Window system (commonly X11 or X) is a computer software system and network protocol that implements X display protocol and provides windowing on bitmap displays.
    [Show full text]
  • Motif to Qt Migration
    BUILDING SMART SOLUTIONS THAT CREATE BUSINESS IMPACT Motif has been the standard for ages, but it’s now 30 years old and there aren’t many experts left INTRODUCTION If you’re among the business owners that don't invest much in software and hard- ware innovation, because their current setup "still works", we should let you know that’s a risky choice. Technology ages so quickly that it becomes outdated in a matter of years. It will gradually become harder for you to keep supporting and scaling software that was written using legacy technologies, as engineers who were once experts in the field are now close to retirement. Not having avail- able workforce to maintain your existing systems and set you up for the future, is a recipe for disaster. And if your company's information technology assets are un- available for a day that could result in huge loss - both in profit and market share. Besides aging technology, there are other factors to be considered. Surely your company relies on some kind of third party applications and tools that are also compatible with others. What happens if the vendors cease to offer this compati- bility or go out of business, consequently stopping updates and support for the 2 application? Situations like that make it worth for you to consider initiating a migration project: migration from one system to another, migration of software systems to new hardware, migration from one setup to another setup, etc. Migration is not a simple decision to make - your engineering team might prefer one technology over the other; or the newly chosen technology might offer you something that the one currently in use doesn't.
    [Show full text]
  • RBFOX3 Promotes Gastric Cancer Growth and Progression Through
    Preprints (www.preprints.org) | NOT PEER-REVIEWED | Posted: 16 April 2020 doi:10.20944/preprints202004.0264.v1 RBFOX3 Promotes Gastric Cancer Growth and Progression through Activating HTERT Signaling Chen Luo#1,2,3, Xiaojian Zhu#1,2,3, Qilin Luo1, Fanqin Bu1,2,3, Chao Huang1,2,3, Jingfeng Zhu1,2,3, Jiefeng Zhao1,2,3, Wenjun Zhao1,2,3, Kang Lin1,2,3, Cegui Hu2,3, Zong Zeng1,3, Hongliang Luo1,3, Jun Huang1, Zhengming Zhu1 1Department of General Surgery, The Second Affiliated Hospital of Nanchang University,Nanchang, China. 2Jiangxi Medical College of Nanchang University,Nanchang, China. 3Jiangxi Province Key Laboratory of Molecular Medicine, Nanchang, China. #Chen Luo#1,2,3 and Xiaojian Zhu#1,2,3 contributed equally to this work. Correspondence: *Zhengming Zhu, Department of General Surgery, The Second Affiliated Hospital of Nanchang University, Nanchang 330006, China. Email: [email protected]. *Xiaojian Zhu, Department of General Surgery, The Second Affiliated Hospital of Nanchang University, Nanchang 330006, China. Email: [email protected]. *Zhengming Zhu and Xiaojian Zhu are co-corresponding authors. Abstract Tumor invasion, metastasis, and recrudesce remain a considerable challenge in the treatment of gastric cancer (GC). Herein, we first identified that RBFOX3 (RNA binding protein fox-1 homolog 3) was significantly up-regulated in GC tissues and negatively linked to the survival rate of GC patients. RBFOX3 promoted cell division and cell cycle progression in vitro as well as in vivo. Furthermore, RBFOX3 increased cell invasion and migration ability. Interestingly, both the suppression of GC cell multiplication and invasion moderated by the silencing of RBFOX3 was rescued by HTERT up-regulation.
    [Show full text]
  • TOOLS for MOTIF-RACK Installation Guide / Installationshandbuch / Manuel D’Installation
    TOOLS for MOTIF-RACK Installation Guide / Installationshandbuch / Manuel d’installation SPECIAL NOTICES • The software and this Installation Guide are exclusive copyrights of Yamaha Corporation. • Use of the software and this guide is governed by the SOFTWARE LICENSING AGREEMENT which the purchaser fully agrees to upon English breaking the seal of the software packaging. (Please read carefully the AGREEMENT at the end of this guide before installing the application.) • Copying of the software or reproduction of this guide in whole or in part by any means is expressly forbidden without the written consent of the manufacturer. •Yamaha makes no representations or warranties with regard to the use of the software and documentation and cannot be held responsible for the results of the use of this guide and the software. • Copying of the commercially available music data is strictly prohibited except for your personal use. • The company names and product names in this Installation Guide are the trademarks or registered trademarks of their respective companies. • Future upgrades of application and system software and any changes in specifications and functions will be announced separately. Deutsch BESONDERE HINWEISE • Dieses Programm und diese Installationsanleitung sind im Sinne des Urheberrechts alleiniges Eigentum der Yamaha Corporation. • Die Benutzung des Programms und dieser Anleitung unterliegt der SOFTWARE-LIZENZVEREINBARUNG, mit der sich der Erwerber durch Öffnen des Siegels der Programmverpackung uneingeschränkt einverstanden erklärt. (Bitte lesen Sie die VEREINBARUNG am Ende dieser Anleitung vor Installation der Anwendung sorgfältig durch.) • Das Kopieren der Software und die Reproduktion dieser Anleitung, in welcher Form auch immer, in Teilen oder als Ganzes, sind nur mit Français schriftlicher Genehmigung des Herstellers erlaubt und sonst ausdrücklich verboten.
    [Show full text]