Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6601791
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T18:47:56+00:00 2026-05-25T18:47:56+00:00

I am creating a small Visual Studio 2010 extension in C# which uses the

  • 0

I am creating a small Visual Studio 2010 extension in C# which uses the IWpfTextViewCreationListener and TextViewCreated to capture when a new TextView is opened in the VS environment. The problem I am having is that this method only fires when a new window is opened via the VS Solution Explorer window, and not fired when VS already contains opened windows when started, and switching window tabs. I have tried looking for something like TextViewChanged, but could not find such method. Is there anyway to capture the new TextView when another tabbed window is selected?

Any help would be greatly appreciated.

This question has also been posted on the MSDN VS Extensibility forum:
VSX 2010 – Alternative to TextViewCreated such as (TextViewChanged)?

Thanks

John

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T18:47:57+00:00Added an answer on May 25, 2026 at 6:47 pm

    There is no TextViewCreated, but if you register to IWpfTextView.GotAggregateFocus as it is created, you get a hook to every switch between files:

        public void TextViewCreated(IWpfTextView textView)
        {
            textView.GotAggregateFocus += TextViewCameToFocus;
            // Do stuff when a new IWpfTextView is created...
        }
    
        void TextViewCameToFocus(object sender, EventArgs e)
        {
            var focusedTextView = (IWpfTextView)sender;
    
            // Do stuff when a specific IWpfTextView comes to focus...
        }
    

    You may also want to keep track of the IWpfTextView objects, if you want to be able to link between the fired events to your logic of each textview.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Small pet peev. When creating new visual studio projects is there any way to
I want to create a Visual Studio 2010 Project Template, which is essentially a
I am creating small django application which holds some few questions (and answers for
I am creating a small silverlight widget which pronounces a word and highlights each
I'm creating a small code plugin which allows you to do some things with
I'm creating a small web page using jquery-ui-1.8 which is having a frameset and
I'm creating a small project which will manipulate some internal components of the project(big
I'm creating a small tool that will fetch new issues from our redmine repository
I'm creating a small program which consists of a few source files on my
I am creating a small modal form that is used in Winforms application. It

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.