{
  "WorkItem": {
    "AffectedComponent": {
      "Name": "",
      "DisplayName": ""
    },
    "ClosedComment": "",
    "ClosedDate": null,
    "CommentCount": 0,
    "Custom": null,
    "Description": "Hey guys,\n\nSo i need some help with my wpf application. i have a datagrid(see below) and in that datagrid i have some url's.\n\nWhen you click on a url it links to a file that's inside of a protected zip file. the problem is that i cant open the file because it's inside the protected zip file and i needs to stay inside of the zip file.\n\nXAML code:\n\n<DataGrid AutoGenerateColumns=\"False\" IsReadOnly=\"True\" x:Name=\"gvData\" SelectionMode=\"Single\" FontSize=\"15\" Padding=\"5\" Background=\"white\" Margin=\"230,178,0,10\" Grid.RowSpan=\"2\">\n            <DataGrid.Columns>\n\n                <DataGridTextColumn Binding=\"{Binding media_name}\" Header=\"Name\" MaxWidth=\"150\" />\n\n                <DataGridHyperlinkColumn Binding=\"{Binding media_url}\" Header=\"Url\">\n                    <DataGridHyperlinkColumn.ElementStyle>\n                        <Style>\n                            <EventSetter Event=\"Hyperlink.Click\" Handler=\"Hyperlink_Click\"/>\n                        </Style>\n                    </DataGridHyperlinkColumn.ElementStyle>\n                </DataGridHyperlinkColumn>\n\n                <DataGridTextColumn Binding=\"{Binding media_terms}\" Header=\"Terms\" MaxWidth=\"150\" />\n\n            </DataGrid.Columns>\n        </DataGrid>\n\ni use the Dotnetzip class library for the zipping. How can i open the file that's inside the protected zip file, in it's default program by clicking on the hyperlink. I tryed the extract option on the website of dotnetzip but it doesn't work.\n\nc# CODE:\n\nprivate void Hyperlink_Click(object sender, RoutedEventArgs e)\n        {\n            Hyperlink link = (Hyperlink)e.OriginalSource;\n            Process.Start(link.NavigateUri.AbsoluteUri);\n        }",
    "LastUpdatedDate": "2016-03-31T06:35:38.98-07:00",
    "PlannedForRelease": "",
    "ReleaseVisibleToPublic": false,
    "Priority": {
      "Name": "Unassigned",
      "Severity": 0,
      "Id": 0
    },
    "ProjectName": "DotNetZip",
    "ReportedDate": "2016-03-31T06:35:38.98-07:00",
    "Status": {
      "Name": "Proposed",
      "Id": 1
    },
    "ReasonClosed": {
      "Name": "Unassigned"
    },
    "Summary": "WPF - Open a file from a protected zip file thought a hyperlink (DotNetZip",
    "Type": {
      "Name": "Unassigned",
      "Id": 5
    },
    "VoteCount": 1,
    "Id": 17640
  },
  "FileAttachments": [],
  "Comments": []
}