Permalink
Fetching contributors…
Cannot retrieve contributors at this time
51 lines (42 sloc) 1.64 KB
'This is a list of commonly used namespaces for a pane.
Imports System
Imports System.Windows
Imports System.Windows.Documents
Imports System.Windows.Controls
Imports System.Windows.Navigation
Imports System.Windows.Input
Imports System.Windows.Media
Imports System.Windows.Media.Imaging
Namespace ImageElementExample
Partial Class FormatConvertedExample
Inherits Page
'
'ToDo: Error processing original source shown below
'{
' public partial class FormatConvertedExample : Page
'-----------^--- 'class', 'struct', 'interface' or 'delegate' expected
'
'ToDo: Error processing original source shown below
'{
' public partial class FormatConvertedExample : Page
'-------------------^--- Syntax error: ';' expected
Public Sub New()
End Sub 'New
Private Sub PageLoaded(ByVal sender As Object, ByVal args As RoutedEventArgs)
'<SnippetConvertedCSharp1>
'Create Image Element
Dim grayImage As New Image()
grayImage.Width = 200
grayImage.Margin = New Thickness(5)
'Create source using xaml defined resource.
Dim fcb As New FormatConvertedBitmap(CType(Me.Resources("masterImage"), BitmapImage), PixelFormats.Gray4, Nothing, 0)
'set image source
grayImage.Source = fcb
'</SnippetConvertedCSharp1>
'Add Image to the UI
Grid.SetColumn(grayImage, 2)
Grid.SetRow(grayImage, 1)
convertedGrid.Children.Add(grayImage)
End Sub 'PageLoaded
End Class 'FormatConvertedExample
End Namespace