Guest User

What to do when WPF Window doesn't recognize user control defined in the same project

a guest
Feb 26th, 2012
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. <Window x:Class="TCI.Indexer.UI.Operacao"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:tci="clr-namespace:TCI.Indexer.UI.Controles"
  5. Title=" " MinHeight="550" MinWidth="675" Loaded="Load" ResizeMode="NoResize" WindowStyle="None" WindowStartupLocation="CenterScreen" WindowState="Maximized" Focusable="True">
  6. <Canvas Name="canv">
  7.  
  8. <tci:Status x:Name="ucStatus"/>
  9. <Grid Canvas.Top="0" Canvas.Left="0">
  10.  
  11. <StackPanel Orientation="Horizontal">
  12. <!-- Indices -->
  13. <Label Width="200"/>
  14.  
  15. </StackPanel>
  16. </Grid>
  17. </Canvas>
  18. </Window>
Add Comment
Please, Sign In to add comment