Windows presentation foundation unleashed:
Gespeichert in:
Hauptverfasser: | , |
---|---|
Format: | Buch |
Sprache: | English |
Veröffentlicht: |
Indianapolis, Ind.
Sams Publ.
2007
|
Schlagworte: | |
Online-Zugang: | Table of contents only Inhaltsverzeichnis |
Beschreibung: | XI, 638 S. Ill., graph. Darst. |
ISBN: | 0672328917 9780672328916 |
Internformat
MARC
LEADER | 00000nam a2200000zc 4500 | ||
---|---|---|---|
001 | BV023084028 | ||
003 | DE-604 | ||
005 | 20120329 | ||
007 | t | ||
008 | 080116s2007 xxuad|| |||| 00||| eng d | ||
010 | |a 2006038586 | ||
020 | |a 0672328917 |9 0-672-32891-7 | ||
020 | |a 9780672328916 |9 978-0-672-32891-6 | ||
035 | |a (OCoLC)76794780 | ||
035 | |a (DE-599)DNB 2006038586 | ||
040 | |a DE-604 |b ger |e aacr | ||
041 | 0 | |a eng | |
044 | |a xxu |c US | ||
049 | |a DE-92 |a DE-384 |a DE-M347 |a DE-863 | ||
050 | 0 | |a QA76.76.A65 | |
082 | 0 | |a 005.2/768 | |
084 | |a ST 281 |0 (DE-625)143646: |2 rvk | ||
100 | 1 | |a Nathan, Adam |e Verfasser |4 aut | |
245 | 1 | 0 | |a Windows presentation foundation unleashed |c Adam Nathan with Daniel Lehenbauer |
246 | 1 | 3 | |a Presentation foundation unleashed |
264 | 1 | |a Indianapolis, Ind. |b Sams Publ. |c 2007 | |
300 | |a XI, 638 S. |b Ill., graph. Darst. | ||
336 | |b txt |2 rdacontent | ||
337 | |b n |2 rdamedia | ||
338 | |b nc |2 rdacarrier | ||
630 | 0 | 4 | |a Windows presentation foundation |
650 | 4 | |a Application software | |
650 | 4 | |a Microsoft .NET Framework | |
650 | 0 | 7 | |a Windows Presentation Foundation |0 (DE-588)7551149-6 |2 gnd |9 rswk-swf |
689 | 0 | 0 | |a Windows Presentation Foundation |0 (DE-588)7551149-6 |D s |
689 | 0 | |5 DE-604 | |
700 | 1 | |a Lehenbauer, Daniel |e Verfasser |4 aut | |
856 | 4 | |u http://www.loc.gov/catdir/toc/ecip075/2006038586.html |3 Table of contents only | |
856 | 4 | 2 | |m HBZ Datenaustausch |q application/pdf |u http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=016287003&sequence=000002&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA |3 Inhaltsverzeichnis |
999 | |a oai:aleph.bib-bvb.de:BVB01-016287003 |
Datensatz im Suchindex
DE-BY-863_location | 1911 |
---|---|
DE-BY-FWS_call_number | 1911/2015:0781 |
DE-BY-FWS_katkey | 374271 |
DE-BY-FWS_media_number | 083101132499 |
_version_ | 1806177696702529536 |
adam_text | iv Windows Presentation Foundation Unleashed
Table of Contents
Introduction 1
Who Should Read This Book? 2
Software Requirements 3
Code Examples 4
How This Book Is Organized 4
Part I: Background 4
Part II: Building a WPF Application 4
Part III: Features for Professional Developers 5
Part IV: Going Beyond Today s Applications with Rich Media 5
Part V: Advanced Topics 5
Conventions Used in This Book 6
Part I Background
1 Why Windows Presentation Foundation? 9
A Look at the Past 10
Enter WPF 11
Part of the .NET Framework 16
Designed for Managed Code 16
Emphasis on Declarative Descriptions 17
Conclusion 18
2 XAML Demystified 19
XAML Defined 20
Elements and Attributes 20
Namespaces 22
Property Elements 24
Type Converters 25
Markup Extensions 26
Children of Object Elements 29
The Content Property 29
Collection Items 30
More Type Conversion 32
Compilation: Mixing XAML with Procedural Code 34
Loading and Parsing XAML at Run-Time 34
Compiling XAML 36
XAML Keywords 41
Contents v
Conclusion 43
Complaint #1: XML Is Too Verbose to Type 44
Complaint #2: XML-Based Systems Have Poor Performance 44
3 Important New Concepts In WPF 45
Logical and Visual Trees 45
Dependency Properties 51
A Dependency Property Implementation 51
Change Notification 53
Property Value Inheritance 55
Support for Multiple Providers 57
Attached Properties 60
Routed Events 64
A Routed Event Implementation 64
Routing Strategies and Event Handlers 66
Routed Events in Action 66
Attached Events 70
Commands 73
Built-in Commands 74
Executing Commands with Input Gestures 77
Controls with Built-in Command Bindings 78
A Tour of the Class Hierarchy 79
Conclusion 81
Part II Building a WPF Application
4 Introducing WPF s Controls 85
Content Controls 86
Buttons 87
Simple Containers 91
Containers with a Header 95
Items Controls 97
Selectors 100
Menus Ill
Other Items Controls 115
Range Controls 120
ProgressBar 120
Slider 121
Text and Ink Controls 122
TextBox 122
RichTextBox 123
PasswordBox 123
InkCanvas 124
Conclusion 126
vi Windows Presentation Foundation Unleashed
5 Sizing, Positioning, and Transforming Elements 127
Controlling Size 128
Height and Width 128
Margin and Padding 130
Visibility 132
Controlling Position 133
Alignment 133
Content Alignment 134
FlowDirection 135
Applying Transforms 136
RotateTransform 138
ScaleTransform 139
SkewTransform 142
TranslateTransform 142
MatrixTransform 142
Combining Transforms 143
Conclusion 145
6 Layout with Panels 147
Canvas 148
StackPanel 151
WrapPanel 152
DockPanel 155
Grid 157
Sizing the Rows and Columns 161
Interactive Sizing with GridSplitter 164
Sharing Row and Column Sizes 166
Comparing Grid to Other Panels 168
Primitive Panels 169
TabPanel 169
ToolBarOverflowPanel 170
ToolBarTray 170
UniformGrid 170
Handling Content Overflow 170
Clipping 171
Scrolling 173
Scaling 175
Putting It All Together: Creating a Visual Studio-Like Collapsible,
Dockable, Resizable Pane 179
Conclusion 189
Contents vii
7 Structuring and Deploying an Application 191
Standard Windows Applications 191
The Window Class 192
The Application Class 195
Creating and Showing Dialogs 201
Persisting and Restoring Application State 204
Deployment: ClickOnce Versus Windows Installer 205
Navigation-Based Windows Applications 206
Pages and Their Navigation Containers 207
Navigating from Page to Page 209
Passing Data Between Pages 215
Applications with a Windows Vista Look and Feel 218
Going Beyond MessageBox with TaskDialog 219
Using Aero Glass 221
Gadget-Style Applications 225
XAML Browser Applications 227
Limited Feature Set 229
Integrated Navigation 231
Deployment 232
Loose XAML Pages 235
Conclusion 236
Part III Features for Professional Developers
8 Resources 239
Binary Resources 239
Defining Binary Resources 240
Accessing Binary Resources 241
Localization 246
Logical Resources 247
Resource Lookup 250
Static Versus Dynamic Resources 251
Interaction with System Resources 256
Conclusion 256
9 Data Binding 259
Introducing the Binding Object 259
Using Binding in Procedural Code 259
Using Binding in XAML 262
Binding to Plain .NET Properties 263
Binding to an Entire Object 265
Binding to a Collection 267
Sharing the Source with DataContext 270
viii Windows Presentation Foundation Unleashed
Controlling Rendering 271
Using Data Templates 271
Using Value Converters 274
Customizing the View of a Collection 279
Sorting 279
Grouping 281
Filtering 284
Navigating 285
Working with Additional Views 286
Data Providers 288
XmlDataProvider 289
ObjectDataProvider 293
Advanced Topics 296
Customizing the Data Flow 296
Adding Validation Rules to Binding 298
Working with Disjoint Sources 301
Putting It All Together: The Pure-XAML RSS Reader 303
Conclusion 305
10 Styles, Templates, Skins, and Themes 307
Styles 308
Sharing Styles 310
Triggers 316
Templates 321
Introducing Control Templates 321
Getting Interactivity with Triggers 322
Restricting the Target Type 324
Respecting the Templated Parent s Properties 325
Respecting Visual States 332
Mixing Templates with Styles 338
Skins 340
Themes 346
Using System Colors, Fonts, and Parameters 347
Per-Theme Styles and Templates 348
Conclusion 351
Part IV Going Beyond Today s Applications with Rich Media
11 2D Graphics 355
Drawings 356
Geometries 358
Pens 369
Clip Art Example 370
Contents ix
Visuals 372
Filling a DrawingVisual with Content 373
Displaying a Visual on the Screen 376
Visual Hit Testing 378
Shapes 385
Rectangle 386
Ellipse 387
Line 388
Polyline 388
Polygon 389
Path 390
Clip Art Based on Shapes 391
Brushes 392
Color Brushes 392
Tile Brushes 399
Brushes as Opacity Masks 406
Bitmap Effects 409
Conclusion 413
12 3D Graphics 415
Getting Started with 3D Graphics 416
Cameras and Coordinate Systems 420
The Position Property 420
LookDirection 422
UpDirection 425
Orthographic Versus Perspective 428
Transform3Ds 430
TranslateTransform3Ds 433
ScaleTransform3Ds 433
RotateTransform3Ds 436
Combining Transform3Ds 439
Model3Ds 439
Lights 440
GeometryModeODs 447
Model3DGroup 459
VisuaBDs 462
ModelVisuaODs 462
3D Hit Testing 464
The Viewport3D Element 465
Conclusion 468
x Windows Presentation Foundation Unleashed
13 Animation 469
Animations in Procedural Code 470
Performing Animation By Hand 470
Introducing the Animation Classes 471
Simple Animation Tweaks 478
Animations in XAML 483
EventTriggers Containing Storyboards 483
Using Storyboard as a Timeline 490
Keyframe Animations 492
Linear Keyframes 492
Spline Keyframes 495
Discrete Keyframes 496
Conclusion 499
14 Audio, Video, Speech, and Documents 501
Audio 501
SoundPlayer 502
SoundPlayerAction 502
MediaPlayer 503
MediaElement and MediaTimeline 504
Video 506
Controlling the Visual Aspects of MediaElement 506
Controlling the Underlying Media 509
Speech 512
Speech Synthesis 512
Speech Recognition 515
Documents 519
Creating Flow Documents 520
Displaying Flow Documents 530
Adding Annotations 532
Conclusion 535
Part V Advanced Topics
15 Interoperability with Win32, Windows Forms, and ActiveX 539
Embedding Win32 Controls in WPF Applications 541
A Win32 Webcam Control 541
Using the Webcam Control in WPF 545
Supporting Keyboard Navigation 551
Embedding WPF Controls in Win32 Applications 556
Introducing HwndSource 556
Getting the Right Layout 559
Contents xi
Embedding Windows Forms Controls in WPF Applications 563
Embedding a PropertyGrid with Procedural Code 564
Embedding a PropertyGrid with XAML 566
Embedding WPF Controls in Windows Forms Applications 567
Embedding ActiveX Controls in WPF Applications 572
Conclusion 576
16 User Controls and Custom Controls 579
Creating a User Control 581
Creating the User Interface 581
Creating the Behavior 583
Adding Dependency Properties 586
Adding Routed Events 589
Creating a Custom Control 590
Creating the Behavior 591
Creating the User Interface 597
Considerations for More Sophisticated Controls 601
Conclusion 604
17 Layout with Custom Panels 605
Communication Between Parents and Children 606
The Measure Step 606
The Arrange Step 608
Creating a 2007 Office-Like RibbonPanel 609
RibbonPanel Behavior 609
RibbonPanel Implementation 610
Conclusion 614
Part VI Appendix
Appendix Helpful Tools 617
Professional Development Tools 617
Free Utilities 618
Professional Design Tools 620
Index 621
|
adam_txt |
iv Windows Presentation Foundation Unleashed
Table of Contents
Introduction 1
Who Should Read This Book? 2
Software Requirements 3
Code Examples 4
How This Book Is Organized 4
Part I: Background 4
Part II: Building a WPF Application 4
Part III: Features for Professional Developers 5
Part IV: Going Beyond Today's Applications with Rich Media 5
Part V: Advanced Topics 5
Conventions Used in This Book 6
Part I Background
1 Why Windows Presentation Foundation? 9
A Look at the Past 10
Enter WPF 11
Part of the .NET Framework 16
Designed for Managed Code 16
Emphasis on Declarative Descriptions 17
Conclusion 18
2 XAML Demystified 19
XAML Defined 20
Elements and Attributes 20
Namespaces 22
Property Elements 24
Type Converters 25
Markup Extensions 26
Children of Object Elements 29
The Content Property 29
Collection Items 30
More Type Conversion 32
Compilation: Mixing XAML with Procedural Code 34
Loading and Parsing XAML at Run-Time 34
Compiling XAML 36
XAML Keywords 41
Contents v
Conclusion 43
Complaint #1: XML Is Too Verbose to Type 44
Complaint #2: XML-Based Systems Have Poor Performance 44
3 Important New Concepts In WPF 45
Logical and Visual Trees 45
Dependency Properties 51
A Dependency Property Implementation 51
Change Notification 53
Property Value Inheritance 55
Support for Multiple Providers 57
Attached Properties 60
Routed Events 64
A Routed Event Implementation 64
Routing Strategies and Event Handlers 66
Routed Events in Action 66
Attached Events 70
Commands 73
Built-in Commands 74
Executing Commands with Input Gestures 77
Controls with Built-in Command Bindings 78
A Tour of the Class Hierarchy 79
Conclusion 81
Part II Building a WPF Application
4 Introducing WPF's Controls 85
Content Controls 86
Buttons 87
Simple Containers 91
Containers with a Header 95
Items Controls 97
Selectors 100
Menus Ill
Other Items Controls 115
Range Controls 120
ProgressBar 120
Slider 121
Text and Ink Controls 122
TextBox 122
RichTextBox 123
PasswordBox 123
InkCanvas 124
Conclusion 126
vi Windows Presentation Foundation Unleashed
5 Sizing, Positioning, and Transforming Elements 127
Controlling Size 128
Height and Width 128
Margin and Padding 130
Visibility 132
Controlling Position 133
Alignment 133
Content Alignment 134
FlowDirection 135
Applying Transforms 136
RotateTransform 138
ScaleTransform 139
SkewTransform 142
TranslateTransform 142
MatrixTransform 142
Combining Transforms 143
Conclusion 145
6 Layout with Panels 147
Canvas 148
StackPanel 151
WrapPanel 152
DockPanel 155
Grid 157
Sizing the Rows and Columns 161
Interactive Sizing with GridSplitter 164
Sharing Row and Column Sizes 166
Comparing Grid to Other Panels 168
Primitive Panels 169
TabPanel 169
ToolBarOverflowPanel 170
ToolBarTray 170
UniformGrid 170
Handling Content Overflow 170
Clipping 171
Scrolling 173
Scaling 175
Putting It All Together: Creating a Visual Studio-Like Collapsible,
Dockable, Resizable Pane 179
Conclusion 189
Contents vii
7 Structuring and Deploying an Application 191
Standard Windows Applications 191
The Window Class 192
The Application Class 195
Creating and Showing Dialogs 201
Persisting and Restoring Application State 204
Deployment: ClickOnce Versus Windows Installer 205
Navigation-Based Windows Applications 206
Pages and Their Navigation Containers 207
Navigating from Page to Page 209
Passing Data Between Pages 215
Applications with a Windows Vista Look and Feel 218
Going Beyond MessageBox with TaskDialog 219
Using Aero Glass 221
Gadget-Style Applications 225
XAML Browser Applications 227
Limited Feature Set 229
Integrated Navigation 231
Deployment 232
Loose XAML Pages 235
Conclusion 236
Part III Features for Professional Developers
8 Resources 239
Binary Resources 239
Defining Binary Resources 240
Accessing Binary Resources 241
Localization 246
Logical Resources 247
Resource Lookup 250
Static Versus Dynamic Resources 251
Interaction with System Resources 256
Conclusion 256
9 Data Binding 259
Introducing the Binding Object 259
Using Binding in Procedural Code 259
Using Binding in XAML 262
Binding to Plain .NET Properties 263
Binding to an Entire Object 265
Binding to a Collection 267
Sharing the Source with DataContext 270
viii Windows Presentation Foundation Unleashed
Controlling Rendering 271
Using Data Templates 271
Using Value Converters 274
Customizing the View of a Collection 279
Sorting 279
Grouping 281
Filtering 284
Navigating 285
Working with Additional Views 286
Data Providers 288
XmlDataProvider 289
ObjectDataProvider 293
Advanced Topics 296
Customizing the Data Flow 296
Adding Validation Rules to Binding 298
Working with Disjoint Sources 301
Putting It All Together: The Pure-XAML RSS Reader 303
Conclusion 305
10 Styles, Templates, Skins, and Themes 307
Styles 308
Sharing Styles 310
Triggers 316
Templates 321
Introducing Control Templates 321
Getting Interactivity with Triggers 322
Restricting the Target Type 324
Respecting the Templated Parent's Properties 325
Respecting Visual States 332
Mixing Templates with Styles 338
Skins 340
Themes 346
Using System Colors, Fonts, and Parameters 347
Per-Theme Styles and Templates 348
Conclusion 351
Part IV Going Beyond Today's Applications with Rich Media
11 2D Graphics 355
Drawings 356
Geometries 358
Pens 369
Clip Art Example 370
Contents ix
Visuals 372
Filling a DrawingVisual with Content 373
Displaying a Visual on the Screen 376
Visual Hit Testing 378
Shapes 385
Rectangle 386
Ellipse 387
Line 388
Polyline 388
Polygon 389
Path 390
Clip Art Based on Shapes 391
Brushes 392
Color Brushes 392
Tile Brushes 399
Brushes as Opacity Masks 406
Bitmap Effects 409
Conclusion 413
12 3D Graphics 415
Getting Started with 3D Graphics 416
Cameras and Coordinate Systems 420
The Position Property 420
LookDirection 422
UpDirection 425
Orthographic Versus Perspective 428
Transform3Ds 430
TranslateTransform3Ds 433
ScaleTransform3Ds 433
RotateTransform3Ds 436
Combining Transform3Ds 439
Model3Ds 439
Lights 440
GeometryModeODs 447
Model3DGroup 459
VisuaBDs 462
ModelVisuaODs 462
3D Hit Testing 464
The Viewport3D Element 465
Conclusion 468
x Windows Presentation Foundation Unleashed
13 Animation 469
Animations in Procedural Code 470
Performing Animation "By Hand" 470
Introducing the Animation Classes 471
Simple Animation Tweaks 478
Animations in XAML 483
EventTriggers Containing Storyboards 483
Using Storyboard as a Timeline 490
Keyframe Animations 492
Linear Keyframes 492
Spline Keyframes 495
Discrete Keyframes 496
Conclusion 499
14 Audio, Video, Speech, and Documents 501
Audio 501
SoundPlayer 502
SoundPlayerAction 502
MediaPlayer 503
MediaElement and MediaTimeline 504
Video 506
Controlling the Visual Aspects of MediaElement 506
Controlling the Underlying Media 509
Speech 512
Speech Synthesis 512
Speech Recognition 515
Documents 519
Creating Flow Documents 520
Displaying Flow Documents 530
Adding Annotations 532
Conclusion 535
Part V Advanced Topics
15 Interoperability with Win32, Windows Forms, and ActiveX 539
Embedding Win32 Controls in WPF Applications 541
A Win32 Webcam Control 541
Using the Webcam Control in WPF 545
Supporting Keyboard Navigation 551
Embedding WPF Controls in Win32 Applications 556
Introducing HwndSource 556
Getting the Right Layout 559
Contents xi
Embedding Windows Forms Controls in WPF Applications 563
Embedding a PropertyGrid with Procedural Code 564
Embedding a PropertyGrid with XAML 566
Embedding WPF Controls in Windows Forms Applications 567
Embedding ActiveX Controls in WPF Applications 572
Conclusion 576
16 User Controls and Custom Controls 579
Creating a User Control 581
Creating the User Interface 581
Creating the Behavior 583
Adding Dependency Properties 586
Adding Routed Events 589
Creating a Custom Control 590
Creating the Behavior 591
Creating the User Interface 597
Considerations for More Sophisticated Controls 601
Conclusion 604
17 Layout with Custom Panels 605
Communication Between Parents and Children 606
The Measure Step 606
The Arrange Step 608
Creating a 2007 Office-Like RibbonPanel 609
RibbonPanel Behavior 609
RibbonPanel Implementation 610
Conclusion 614
Part VI Appendix
Appendix Helpful Tools 617
Professional Development Tools 617
Free Utilities 618
Professional Design Tools 620
Index 621 |
any_adam_object | 1 |
any_adam_object_boolean | 1 |
author | Nathan, Adam Lehenbauer, Daniel |
author_facet | Nathan, Adam Lehenbauer, Daniel |
author_role | aut aut |
author_sort | Nathan, Adam |
author_variant | a n an d l dl |
building | Verbundindex |
bvnumber | BV023084028 |
callnumber-first | Q - Science |
callnumber-label | QA76 |
callnumber-raw | QA76.76.A65 |
callnumber-search | QA76.76.A65 |
callnumber-sort | QA 276.76 A65 |
callnumber-subject | QA - Mathematics |
classification_rvk | ST 281 |
ctrlnum | (OCoLC)76794780 (DE-599)DNB 2006038586 |
dewey-full | 005.2/768 |
dewey-hundreds | 000 - Computer science, information, general works |
dewey-ones | 005 - Computer programming, programs, data, security |
dewey-raw | 005.2/768 |
dewey-search | 005.2/768 |
dewey-sort | 15.2 3768 |
dewey-tens | 000 - Computer science, information, general works |
discipline | Informatik |
discipline_str_mv | Informatik |
format | Book |
fullrecord | <?xml version="1.0" encoding="UTF-8"?><collection xmlns="http://www.loc.gov/MARC21/slim"><record><leader>01703nam a2200445zc 4500</leader><controlfield tag="001">BV023084028</controlfield><controlfield tag="003">DE-604</controlfield><controlfield tag="005">20120329 </controlfield><controlfield tag="007">t</controlfield><controlfield tag="008">080116s2007 xxuad|| |||| 00||| eng d</controlfield><datafield tag="010" ind1=" " ind2=" "><subfield code="a">2006038586</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="a">0672328917</subfield><subfield code="9">0-672-32891-7</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="a">9780672328916</subfield><subfield code="9">978-0-672-32891-6</subfield></datafield><datafield tag="035" ind1=" " ind2=" "><subfield code="a">(OCoLC)76794780</subfield></datafield><datafield tag="035" ind1=" " ind2=" "><subfield code="a">(DE-599)DNB 2006038586</subfield></datafield><datafield tag="040" ind1=" " ind2=" "><subfield code="a">DE-604</subfield><subfield code="b">ger</subfield><subfield code="e">aacr</subfield></datafield><datafield tag="041" ind1="0" ind2=" "><subfield code="a">eng</subfield></datafield><datafield tag="044" ind1=" " ind2=" "><subfield code="a">xxu</subfield><subfield code="c">US</subfield></datafield><datafield tag="049" ind1=" " ind2=" "><subfield code="a">DE-92</subfield><subfield code="a">DE-384</subfield><subfield code="a">DE-M347</subfield><subfield code="a">DE-863</subfield></datafield><datafield tag="050" ind1=" " ind2="0"><subfield code="a">QA76.76.A65</subfield></datafield><datafield tag="082" ind1="0" ind2=" "><subfield code="a">005.2/768</subfield></datafield><datafield tag="084" ind1=" " ind2=" "><subfield code="a">ST 281</subfield><subfield code="0">(DE-625)143646:</subfield><subfield code="2">rvk</subfield></datafield><datafield tag="100" ind1="1" ind2=" "><subfield code="a">Nathan, Adam</subfield><subfield code="e">Verfasser</subfield><subfield code="4">aut</subfield></datafield><datafield tag="245" ind1="1" ind2="0"><subfield code="a">Windows presentation foundation unleashed</subfield><subfield code="c">Adam Nathan with Daniel Lehenbauer</subfield></datafield><datafield tag="246" ind1="1" ind2="3"><subfield code="a">Presentation foundation unleashed</subfield></datafield><datafield tag="264" ind1=" " ind2="1"><subfield code="a">Indianapolis, Ind.</subfield><subfield code="b">Sams Publ.</subfield><subfield code="c">2007</subfield></datafield><datafield tag="300" ind1=" " ind2=" "><subfield code="a">XI, 638 S.</subfield><subfield code="b">Ill., graph. Darst.</subfield></datafield><datafield tag="336" ind1=" " ind2=" "><subfield code="b">txt</subfield><subfield code="2">rdacontent</subfield></datafield><datafield tag="337" ind1=" " ind2=" "><subfield code="b">n</subfield><subfield code="2">rdamedia</subfield></datafield><datafield tag="338" ind1=" " ind2=" "><subfield code="b">nc</subfield><subfield code="2">rdacarrier</subfield></datafield><datafield tag="630" ind1="0" ind2="4"><subfield code="a">Windows presentation foundation</subfield></datafield><datafield tag="650" ind1=" " ind2="4"><subfield code="a">Application software</subfield></datafield><datafield tag="650" ind1=" " ind2="4"><subfield code="a">Microsoft .NET Framework</subfield></datafield><datafield tag="650" ind1="0" ind2="7"><subfield code="a">Windows Presentation Foundation</subfield><subfield code="0">(DE-588)7551149-6</subfield><subfield code="2">gnd</subfield><subfield code="9">rswk-swf</subfield></datafield><datafield tag="689" ind1="0" ind2="0"><subfield code="a">Windows Presentation Foundation</subfield><subfield code="0">(DE-588)7551149-6</subfield><subfield code="D">s</subfield></datafield><datafield tag="689" ind1="0" ind2=" "><subfield code="5">DE-604</subfield></datafield><datafield tag="700" ind1="1" ind2=" "><subfield code="a">Lehenbauer, Daniel</subfield><subfield code="e">Verfasser</subfield><subfield code="4">aut</subfield></datafield><datafield tag="856" ind1="4" ind2=" "><subfield code="u">http://www.loc.gov/catdir/toc/ecip075/2006038586.html</subfield><subfield code="3">Table of contents only</subfield></datafield><datafield tag="856" ind1="4" ind2="2"><subfield code="m">HBZ Datenaustausch</subfield><subfield code="q">application/pdf</subfield><subfield code="u">http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=016287003&sequence=000002&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA</subfield><subfield code="3">Inhaltsverzeichnis</subfield></datafield><datafield tag="999" ind1=" " ind2=" "><subfield code="a">oai:aleph.bib-bvb.de:BVB01-016287003</subfield></datafield></record></collection> |
id | DE-604.BV023084028 |
illustrated | Illustrated |
index_date | 2024-07-02T19:38:26Z |
indexdate | 2024-08-01T11:41:19Z |
institution | BVB |
isbn | 0672328917 9780672328916 |
language | English |
lccn | 2006038586 |
oai_aleph_id | oai:aleph.bib-bvb.de:BVB01-016287003 |
oclc_num | 76794780 |
open_access_boolean | |
owner | DE-92 DE-384 DE-M347 DE-863 DE-BY-FWS |
owner_facet | DE-92 DE-384 DE-M347 DE-863 DE-BY-FWS |
physical | XI, 638 S. Ill., graph. Darst. |
publishDate | 2007 |
publishDateSearch | 2007 |
publishDateSort | 2007 |
publisher | Sams Publ. |
record_format | marc |
spellingShingle | Nathan, Adam Lehenbauer, Daniel Windows presentation foundation unleashed Windows presentation foundation Application software Microsoft .NET Framework Windows Presentation Foundation (DE-588)7551149-6 gnd |
subject_GND | (DE-588)7551149-6 |
title | Windows presentation foundation unleashed |
title_alt | Presentation foundation unleashed |
title_auth | Windows presentation foundation unleashed |
title_exact_search | Windows presentation foundation unleashed |
title_exact_search_txtP | Windows presentation foundation unleashed |
title_full | Windows presentation foundation unleashed Adam Nathan with Daniel Lehenbauer |
title_fullStr | Windows presentation foundation unleashed Adam Nathan with Daniel Lehenbauer |
title_full_unstemmed | Windows presentation foundation unleashed Adam Nathan with Daniel Lehenbauer |
title_short | Windows presentation foundation unleashed |
title_sort | windows presentation foundation unleashed |
topic | Windows presentation foundation Application software Microsoft .NET Framework Windows Presentation Foundation (DE-588)7551149-6 gnd |
topic_facet | Windows presentation foundation Application software Microsoft .NET Framework Windows Presentation Foundation |
url | http://www.loc.gov/catdir/toc/ecip075/2006038586.html http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=016287003&sequence=000002&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA |
work_keys_str_mv | AT nathanadam windowspresentationfoundationunleashed AT lehenbauerdaniel windowspresentationfoundationunleashed AT nathanadam presentationfoundationunleashed AT lehenbauerdaniel presentationfoundationunleashed |
Inhaltsverzeichnis
THWS Würzburg Magazin
Signatur: |
1911 2015:0781 |
---|---|
Exemplar 1 | ausleihbar Verfügbar Bestellen |