DataPackagePropertySet.Title Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient ou définit le texte qui s’affiche comme titre pour le contenu de l’objet DataPackage .
public:
property Platform::String ^ Title { Platform::String ^ get(); void set(Platform::String ^ value); };
winrt::hstring Title();
void Title(winrt::hstring value);
public string Title { get; set; }
var string = dataPackagePropertySet.title;
dataPackagePropertySet.title = string;
Public Property Title As String
Valeur de propriété
Texte qui s’affiche en tant que titre pour le contenu de l’objet DataPackage .
Exemples
Cet exemple montre comment définir le titre du contenu dans un DataPackage.
//To see this code in action, add a call to ShareSourceLoad to your constructor or other
//initializing function.
private void ShareSourceLoad()
{
DataTransferManager dataTransferManager = DataTransferManager.GetForCurrentView();
dataTransferManager.DataRequested += new TypedEventHandler<DataTransferManager, DataRequestedEventArgs>(this.DataRequested);
}
private void DataRequested(DataTransferManager sender, DataRequestedEventArgs e)
{
DataRequest request = e.Request;
request.Data.Properties.Title = "Share Text Example";
request.Data.Properties.Description = "An example of how to share text.";
request.Data.SetText("Hello World!");
}
Remarques
La définition de cette propriété est obligatoire. Sans cela, toutes les opérations de partage impliquant le DataPackage échouent.