Proprietà VSProject2.Project
Ottiene l'oggetto Project generico associato al progetto di Visual Basic o di Visual C#.
Spazio dei nomi: VSLangProj80
Assembly: VSLangProj80 (in VSLangProj80.dll)
Sintassi
'Dichiarazione
ReadOnly Property Project As Project
Project Project { get; }
property Project^ Project {
Project^ get ();
}
abstract Project : Project
function get Project () : Project
Valore proprietà
Tipo: EnvDTE.Project
Oggetto Project.
Note
L'oggetto VSProject2 è la proprietà di un oggetto Project generico.La proprietà Project fornisce accesso all'oggetto Project con estensibilità generale.
Esempi
Per eseguire questo esempio come componente aggiuntivo, vedere Procedura: compilare ed eseguire gli esempi di codice del modello a oggetti di automazione.Prima di eseguire l'esempio, aprire un progetto di Visual Basic o Visual C#.
[Visual Basic]
Public Sub OnConnection(ByVal application As Object, ByVal_
connectMode As ext_ConnectMode, ByVal addInInst As Object, ByRef _
custom As Array) Implements IDTExtensibility2.OnConnection
applicationObject = CType(application, DTE2)
addInInstance = CType(addInInst, AddIn)
VSProjectSavedExample(applicationObject)
End Sub
Sub VSProjectSavedExample(ByVal dte As DTE2)
Dim aProject As Project
Dim aVSProject As VSProject2
aProject = applicationObject.Solution.Projects.Item(1)
aVSProject = CType(applicationObject.Solution.Projects.Item(1)._
Object, VSProject2)
IsProjectSaved(aVSProject)
End Sub
' Displays whether project has unsaved changes.
Sub IsProjectSaved(ByVal aVSProject As VSProject2)
Dim theProject As EnvDTE.Project
theProject = aVSProject.Project
If (theProject.Saved) Then
MsgBox(theProject.Name & " is saved.")
Else
MsgBox(theProject.Name & " is not saved.")
End If
End Sub
[C#]
using System.Windows.Forms;
using VSLangProj;
using VSLangProj2;
using VSLangProj80;
public void OnConnection(object application, ext_ConnectMode
connectMode, object addInInst, ref Array custom)
{
applicationObject = (DTE2)application;
addInInstance = (AddIn)addInInst;
VSProjectSavedExample((DTE2)applicationObject);
}
public void VSProjectSavedExample( DTE2 dte )
{
Project aProject = null;
VSProject aVSProject = null;
aProject = applicationObject.Solution.Projects.Item( 1 );
aVSProject = ( ( VSProject )( applicationObject.Solution.Projects.
Item( 1 ).Object ) );
IsProjectSaved( aVSProject );
}
// Displays whether project has unsaved changes.
public void IsProjectSaved( VSProject aVSProject )
{
EnvDTE.Project theProject = null;
theProject = aVSProject.Project;
if ( ( theProject.Saved ) )
{
MessageBox.Show( theProject.Name + " is saved.");
}
else
{
MessageBox.Show( theProject.Name + " is not saved.");
}
}
Sicurezza di .NET Framework
- Attendibilità totale per il chiamante immediato. Impossibile utilizzare questo membro in codice parzialmente attendibile. Per ulteriori informazioni, vedere Utilizzo di librerie da codice parzialmente attendibile.