DataGridHyperlinkColumn 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
public ref class DataGridHyperlinkColumn : System::Windows::Controls::DataGridBoundColumn
public class DataGridHyperlinkColumn : System.Windows.Controls.DataGridBoundColumn
type DataGridHyperlinkColumn = class
inherit DataGridBoundColumn
Public Class DataGridHyperlinkColumn
Inherits DataGridBoundColumn
- 상속
예제
다음 예제에서는 DataGridHyperlinkColumn 를 설정 UriBinding 하는 합니다 속성을 사용 하 고 하이퍼링크 텍스트를 사용 하 고 ContentBinding 는 속성입니다. 는 Hyperlink.Click 의 DataGrid부모이므로 이벤트가 자동으로 NavigationWindow 처리됩니다.
<NavigationWindow x:Class="DataGrid_CustomColumns.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:core="clr-namespace:System;assembly=mscorlib"
xmlns:local="clr-namespace:DataGrid_CustomColumns"
Title="Customers" Height="300" Width="300" ShowsNavigationUI="False" >
<NavigationWindow.Resources>
<!--Create an instance of the converter for Email-->
<local:EmailConverter x:Key="EmailConverter" />
</NavigationWindow.Resources>
<NavigationWindow.Content>
<Grid>
<DataGrid Name="DG1" ItemsSource="{Binding}" AutoGenerateColumns="False" >
<DataGrid.Columns>
<!--The Email property contains a URI. For example "mailto:lucy0@adventure-works.com"-->
<DataGridHyperlinkColumn Header="Email" Binding="{Binding Email}" ContentBinding="{Binding Email, Converter={StaticResource EmailConverter}}" />
</DataGrid.Columns>
</DataGrid>
</Grid>
</NavigationWindow.Content>
</NavigationWindow>
public partial class Window1 : NavigationWindow
{
Class Window1
public Window1()
{
InitializeComponent();
//GetData() creates a collection of Customer data from a database
ObservableCollection<Customer> custdata = GetData();
//Bind the DataGrid to the customer data
DG1.DataContext = custdata;
}
Public Sub New()
' This call is required by the Windows Form Designer.
InitializeComponent()
' Add any initialization after the InitializeComponent() call.
'GetData() creates a collection of Customer data from a database
Dim custdata As ObservableCollection(Of Customer) = GetData()
'Bind the DataGrid to the customer data
DG1.DataContext = custdata
End Sub
//Defines the customer object
public class Customer
{
public string FirstName { get; set; }
public string LastName { get; set; }
public Uri Email { get; set; }
public bool IsMember { get; set; }
public OrderStatus Status { get; set; }
}
'Defines the customer object
Public Class Customer
Public Property FirstName() As String
Public Property LastName() As String
Public Property Email() As Uri
Public Property IsMember() As Boolean
Public Property Status() As OrderStatus
End Class
}
End Class
//Converts the mailto uri to a string with just the customer alias
public class EmailConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
if (value != null)
{
string email = value.ToString();
int index = email.IndexOf("@");
string alias = email.Substring(7, index-7);
return alias;
}
else
{
string email = "";
return email;
}
}
public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
Uri email = new Uri((string)value);
return email;
}
}
'Converts the mailto uri to a string with just the customer alias
Public Class EmailConverter
Implements IValueConverter
Public Function Convert(value As Object, targetType As System.Type, parameter As Object, culture As System.Globalization.CultureInfo) As Object Implements System.Windows.Data.IValueConverter.Convert
If value IsNot Nothing Then
Dim email As String = value.ToString()
Dim index As Integer = email.IndexOf("@")
Dim [alias] As String = email.Substring(7, index - 7)
Return [alias]
Else
Dim email As String = ""
Return email
End If
End Function
Public Function ConvertBack(value As Object, targetType As System.Type, parameter As Object, culture As System.Globalization.CultureInfo) As Object Implements System.Windows.Data.IValueConverter.ConvertBack
Dim email As New Uri(DirectCast(value, String))
Return email
End Function
End Class
설명
를 사용하여 DataGridHyperlinkColumn HTTP 주소 또는 이메일 주소와 같은 를 포함하는 데이터를 표시합니다 Uri. 다음 그림의 예를 보여 줍니다.는 DataGridHyperlinkColumn합니다.
가
참고
Hyperlink 탐색은 의 Hyperlink 직접 또는 간접 부모가 탐색 호스트인 경우에만 발생할 수 있습니다. 탐색 호스트의 예로는 NavigationWindow, Frame또는 XBAP를 호스트할 수 있는 브라우저가 있습니다. 자세한 내용은 탐색 개요의 "탐색 호스트" 문서를 참조 하세요.
XBAP 지원에 대한 자세한 내용은 WPF 브라우저 호스팅 애플리케이션(XBAP)에 대한 질문과 대답을 참조하세요.
열을 채하려면 속성을 사용하여 열을 Uri 데이터에 바인딩합니다 Binding . URI 문자열과 다른 하이퍼링크 텍스트를 표시하려면 텍스트 값을 속성에 ContentBinding 바인딩합니다. 속성은 Binding 열에서 Hyperlink 만든 또는 TextBox 요소에 적용됩니다. DataContext 셀이 있는 각 셀에 있는 요소는 행의 데이터 항목에 대 한 합니다. 따라서 바인딩 설정에 설정 해야 합니다 Binding.Path합니다. 필요에 따라 데이터를 변환하려는 경우 를 Binding.Converter 지정할 수 있습니다. 데이터 바인딩에 대 한 자세한 내용은 참조 하세요. 데이터 바인딩 (WPF)합니다.
참고
DataGridHyperlinkColumn 는 Hyperlink 편집 모드가 아닌 모드의 요소와 TextBox 편집 모드의 요소를 만듭니다.
다른 유형의 데이터를 표시 하려는 경우 DataGrid 다음 열 유형을 제공 합니다.
열 유형 | 데이터 표시 |
---|---|
DataGridCheckBoxColumn | 부울 데이터를 표시 하려면이 옵션을 사용 합니다. |
DataGridComboBoxColumn | 열거형 데이터를 표시 하려면이 옵션을 사용 합니다. |
DataGridTextColumn | 텍스트를 표시 하려면이 옵션을 사용 합니다. |
다른 컨트롤을 사용 하려는 경우에 DataGrid를 사용 하 여 고유한 열 형식을 만들 수 있습니다 DataGridTemplateColumn합니다.
생성자
DataGridHyperlinkColumn() |
DataGridHyperlinkColumn 클래스의 새 인스턴스를 초기화합니다. |
필드
TargetNameProperty |
TargetName 종속성 속성을 나타냅니다. |
속성
ActualWidth |
열의 현재 너비를 디바이스 독립적 단위(단위당 1/96인치)로 가져옵니다. (다음에서 상속됨 DataGridColumn) |
Binding |
열을 데이터 원본의 속성과 연결하는 바인딩을 가져오거나 설정합니다. (다음에서 상속됨 DataGridBoundColumn) |
CanUserReorder |
사용자가 열 헤더를 끌어 열 표시 위치를 변경할 수 있는지 여부를 나타내는 값을 가져오거나 설정합니다. (다음에서 상속됨 DataGridColumn) |
CanUserResize |
사용자가 마우스를 사용하여 열 너비를 조정할 수 있는지 여부를 나타내는 값을 가져오거나 설정합니다. (다음에서 상속됨 DataGridColumn) |
CanUserSort |
사용자가 열 헤더를 클릭하여 열을 정렬할 수 있는지 여부를 나타내는 값을 가져오거나 설정합니다. (다음에서 상속됨 DataGridColumn) |
CellStyle |
열의 셀을 렌더링할 때 사용되는 스타일을 가져오거나 설정합니다. (다음에서 상속됨 DataGridColumn) |
ClipboardContentBinding |
클립보드의 셀 내용을 가져오거나 설정할 때 사용할 바인딩 개체를 가져오거나 설정합니다. (다음에서 상속됨 DataGridBoundColumn) |
ContentBinding |
하이퍼링크의 텍스트에 대한 바인딩을 가져오거나 설정합니다. |
DataGridOwner |
이 열이 포함된 DataGrid 컨트롤을 가져옵니다. (다음에서 상속됨 DataGridColumn) |
DefaultEditingElementStyle |
EditingElementStyle 속성의 기본값입니다. |
DefaultElementStyle |
ElementStyle 속성의 기본값입니다. |
DependencyObjectType |
DependencyObjectType 이 instance CLR 형식을 래핑하는 을 가져옵니다. (다음에서 상속됨 DependencyObject) |
Dispatcher |
이 Dispatcher와 연결된 DispatcherObject를 가져옵니다. (다음에서 상속됨 DispatcherObject) |
DisplayIndex |
DataGrid의 다른 열에 상대적인 열의 표시 위치를 가져오거나 설정합니다. (다음에서 상속됨 DataGridColumn) |
DragIndicatorStyle |
끌기 작업 도중 열 머리글에 적용할 스타일 개체를 가져오거나 설정합니다. (다음에서 상속됨 DataGridColumn) |
EditingElementStyle |
열이 편집 모드에서 셀에 대해 표시하는 요소를 렌더링할 때 사용되는 스타일을 가져오거나 설정합니다. (다음에서 상속됨 DataGridBoundColumn) |
ElementStyle |
열이 편집 모드가 아닌 셀에 대해 표시하는 요소를 렌더링할 때 사용되는 스타일을 가져오거나 설정합니다. (다음에서 상속됨 DataGridBoundColumn) |
Header |
열 헤더의 콘텐츠를 가져오거나 설정합니다. (다음에서 상속됨 DataGridColumn) |
HeaderStringFormat |
열 머리글의 내용에 적용되는 서식 패턴을 가져오거나 설정합니다. (다음에서 상속됨 DataGridColumn) |
HeaderStyle |
열 머리글을 렌더링할 때 사용되는 스타일을 가져오거나 설정합니다. (다음에서 상속됨 DataGridColumn) |
HeaderTemplate |
열 머리글의 시각적 표시를 정의하는 템플릿을 가져오거나 설정합니다. (다음에서 상속됨 DataGridColumn) |
HeaderTemplateSelector |
열 머리글에 사용할 템플릿을 선택하는 개체를 가져오거나 설정합니다. (다음에서 상속됨 DataGridColumn) |
IsAutoGenerated |
열이 자동으로 생성되는지 여부를 나타내는 값을 가져옵니다. (다음에서 상속됨 DataGridColumn) |
IsFrozen |
열을 가로로 스크롤할 수 없는지 여부를 나타내는 값을 가져옵니다. (다음에서 상속됨 DataGridColumn) |
IsReadOnly |
열의 셀을 편집할 수 있는지 여부를 나타내는 값을 가져오거나 설정합니다. (다음에서 상속됨 DataGridColumn) |
IsSealed |
이 인스턴스가 현재 봉인되어 있는지(읽기 전용인지) 여부를 나타내는 값을 가져옵니다. (다음에서 상속됨 DependencyObject) |
MaxWidth |
열의 최대 너비 제약 조건을 가져오거나 설정합니다. (다음에서 상속됨 DataGridColumn) |
MinWidth |
열의 최소 너비 제약 조건을 가져오거나 설정합니다. (다음에서 상속됨 DataGridColumn) |
SortDirection |
열의 정렬 방향(오름차순 또는 내림차순)을 가져오거나 설정합니다. (다음에서 상속됨 DataGridColumn) |
SortMemberPath |
정렬 기준 멤버를 나타내는 속성 이름, 또는 속성 이름의 마침표로 분리되는 계층 구조를 가져오거나 설정합니다. (다음에서 상속됨 DataGridColumn) |
TargetName |
하이퍼링크에 대한 대상 창 또는 프레임의 이름을 가져오거나 설정합니다. |
Visibility |
열의 표시 유형을 가져오거나 설정합니다. (다음에서 상속됨 DataGridColumn) |
Width |
열 너비 또는 자동 크기 조정 모드를 가져오거나 설정합니다. (다음에서 상속됨 DataGridColumn) |
메서드
이벤트
CopyingCellClipboardContent |
셀 클립보드 내용이 준비된 후에 발생합니다. (다음에서 상속됨 DataGridColumn) |
PastingCellClipboardContent |
클립보드 내용이 셀로 이동하기 전에 발생합니다. (다음에서 상속됨 DataGridColumn) |
적용 대상
추가 정보
.NET