ComponentOne Word for UWP
Quick Start: Word for UWP / Step 1 of 3: Setting up the Application
In This Topic
    Step 1 of 3: Setting up the Application
    In This Topic

    You begin with creating a UWP application in Visual Studio, adding C1Word reference and a button control to your application using the following steps:

    1. Create a new UWP project in Visual Studio.
    2. Add the C1Word reference (dll) to your application.
    3. Add the following namespaces in the code view:
      Imports C1.Xaml.Word
      Imports C1.Xaml.Word.Objects
      
      using C1.Xaml.Word;
      using C1.Xaml.Word.Objects;
      
    4. Switch to design view and add a Button control to the Form in your application to start using the Word for UWP. Set the Content property to a suitable text such as, Text, Name property to btnText and the Click event to btnText_Click.
    5. Double-click the btnText_Click event from the properties window.
      The btnText_Click event gets created in the code view.