Sdílet prostřednictvím


TextDocumentKeyPressEvents – rozhraní

Definuje události spojené s stisknutí klávesy. Tento objekt pomocí funkce a odkazují na TextDocumentKeyPressEventsClass pro dokumentaci členského objektu.

Obor názvů:  EnvDTE80
Sestavení:  EnvDTE80 (v EnvDTE80.dll)

Syntaxe

'Deklarace
<GuidAttribute("505B7600-8FCC-487C-9E4F-C7FD0B5FB690")> _
Public Interface TextDocumentKeyPressEvents _
    Inherits _TextDocumentKeyPressEvents, _dispTextDocumentKeyPressEvents_Event
[GuidAttribute("505B7600-8FCC-487C-9E4F-C7FD0B5FB690")]
public interface TextDocumentKeyPressEvents : _TextDocumentKeyPressEvents, 
    _dispTextDocumentKeyPressEvents_Event
[GuidAttribute(L"505B7600-8FCC-487C-9E4F-C7FD0B5FB690")]
public interface class TextDocumentKeyPressEvents : _TextDocumentKeyPressEvents, 
    _dispTextDocumentKeyPressEvents_Event
[<GuidAttribute("505B7600-8FCC-487C-9E4F-C7FD0B5FB690")>]
type TextDocumentKeyPressEvents =  
    interface
        interface _TextDocumentKeyPressEvents
        interface _dispTextDocumentKeyPressEvents_Event
    end
public interface TextDocumentKeyPressEvents extends _TextDocumentKeyPressEvents, _dispTextDocumentKeyPressEvents_Event

Typ TextDocumentKeyPressEvents zveřejňuje následující členy.

Metody

  Název Popis
Veřejná metoda add_AfterKeyPress Infrastruktura. Microsoft pouze pro interní použití. (Zděděno z _dispTextDocumentKeyPressEvents_Event.)
Veřejná metoda add_BeforeKeyPress Infrastruktura. Microsoft pouze pro interní použití. (Zděděno z _dispTextDocumentKeyPressEvents_Event.)
Veřejná metoda remove_AfterKeyPress Infrastruktura. Microsoft pouze pro interní použití. (Zděděno z _dispTextDocumentKeyPressEvents_Event.)
Veřejná metoda remove_BeforeKeyPress Infrastruktura. Microsoft pouze pro interní použití. (Zděděno z _dispTextDocumentKeyPressEvents_Event.)

Na začátek

Události

  Název Popis
Veřejná událost AfterKeyPress Infrastruktura. Microsoft pouze pro interní použití. (Zděděno z _dispTextDocumentKeyPressEvents_Event.)
Veřejná událost BeforeKeyPress Infrastruktura. Microsoft pouze pro interní použití. (Zděděno z _dispTextDocumentKeyPressEvents_Event.)

Na začátek

Příklady

Tento příklad vytvoří řetězec malý slovník a používá automaticky přeložit některé anglická slova pro barvy jejich šestnáctkové vyjádření připojením k BeforeKeyPress událostí. Nahraďte příklad kódu v souboru Connect.cs. Spustit tento doplněk a otevřít dokument v textu Visual Studio integrované vývojové prostředí (IDE). V textu dokumentu zadejte "červený", "zelené" nebo "modré" Zobrazit metody sběru událostí resp. přeložit text "# ff0000", "# 00cc00" a "# 0000ff". Další informace o spuštění příkladů automatizace naleznete How to: Compile and Run the Automation Object Model Code Examples.

namespace myAddin
{
  using System;
  using Microsoft.VisualStudio.CommandBars;
  using Extensibility;
  using EnvDTE;
  using EnvDTE80;
  using System.Windows.Forms;
  public class Connect : Object, IDTExtensibility2
  {
  public Connect()
  {
  }
  public void OnConnection(object application, 
ext_ConnectMode connectMode, object addInInst, ref Array custom)
  {
      _applicationObject = (DTE2)application;
      _addInInstance = (AddIn)addInInst;
      // Create a small string dictionary with keys and corresponding
      // values.
      myStringDictionary = new
 System.Collections.Specialized.StringDictionary();
      myStringDictionary.Add("red", "#ff0000");
      myStringDictionary.Add("green", "#00cc00");
      myStringDictionary.Add("blue", "#0000ff");
      EnvDTE80.Events2 events =
 (EnvDTE80.Events2)_applicationObject.Events;
      textDocKeyEvents =
 (EnvDTE80.TextDocumentKeyPressEvents)
events.get_TextDocumentKeyPressEvents(null);
      // Connect to the BeforeKeyPress delegate exposed from the
      // TextDocumentKeyPressEvents object retrieved above.
      textDocKeyEvents.BeforeKeyPress +=new
 _dispTextDocumentKeyPressEvents_BeforeKeyPressEventHandler
(BeforeKeyPress);
  }
  public void OnDisconnection(ext_DisconnectMode disconnectMode, ref Array custom)
  {
      if (textDocKeyEvents != null)
      {
          textDocKeyEvents.BeforeKeyPress -= new 
_dispTextDocumentKeyPressEvents_BeforeKeyPressEventHandler
(BeforeKeyPress);
      }
  }
  public void OnAddInsUpdate(ref Array custom)
  {
  }
  public void OnStartupComplete(ref Array custom)
  {
  }
  public void OnBeginShutdown(ref Array custom)
  {
  }
  void BeforeKeyPress(string Keypress, EnvDTE.TextSelection Selection,
 bool InStatementCompletion, ref bool CancelKeypress)
  {
  if ((Keypress == " ") || (Keypress == "\t"))
      {
          EditPoint ep = Selection.ActivePoint.CreateEditPoint();
          EditPoint sp = ep.CreateEditPoint();
          sp.CharLeft(1);
          while (true)
          {
              string txt = sp.GetText(ep);
              if (myStringDictionary.ContainsKey(txt))
              {
                  sp.Delete(txt.Length);
                  sp.Insert(myStringDictionary[txt]);
                  CancelKeypress = true;
                  return;
              }
          sp.CharLeft(1);
          if ((ep.Line != sp.Line) || ((ep.DisplayColumn == 1) 
&& (ep.Line == 1)))
              break;
          }
       }
  }
  private DTE2 _applicationObject;
  private AddIn _addInInstance;
  private EnvDTE80.TextDocumentKeyPressEvents textDocKeyEvents;
  System.Collections.Specialized.StringDictionary myStringDictionary;
  }
}

Viz také

Odkaz

EnvDTE80 – obor názvů