Click here to Skip to main content
15,868,016 members
Home / Discussions / WPF
   

WPF

 
GeneralRe: how to access cell template control's in listview in wpf Pin
Varsha Ramnani2-Dec-13 1:10
professionalVarsha Ramnani2-Dec-13 1:10 
QuestionHow to send the parent name when we click on chlid Pin
Ashfaque Hussain29-Nov-13 3:41
Ashfaque Hussain29-Nov-13 3:41 
QuestionCreate two window by silverlight for windows embeded compact7 os Pin
yingkou21-Nov-13 2:09
yingkou21-Nov-13 2:09 
AnswerRe: Create two window by silverlight for windows embeded compact7 os Pin
Mycroft Holmes21-Nov-13 11:48
professionalMycroft Holmes21-Nov-13 11:48 
GeneralRe: Create two window by silverlight for windows embeded compact7 os Pin
yingkou23-Nov-13 18:02
yingkou23-Nov-13 18:02 
QuestionTrouble with MultiTrigger and IsMouseOver property Pin
t2b18-Nov-13 10:28
t2b18-Nov-13 10:28 
QuestionScroll Bar is not showing Pin
Ashfaque Hussain18-Nov-13 1:56
Ashfaque Hussain18-Nov-13 1:56 
AnswerRe: Scroll Bar is not showing Pin
t2b19-Nov-13 1:22
t2b19-Nov-13 1:22 
Hi,

you use the scroll bar on the item above. If it's a grid, the grid contains the scroll bar.
Note, the canvas height and width must exceed the window parameter. Otherwise the scroller of the scroll bar is inactive.
The scroller is only visible when the content is larger than the item that you want to display.

For example:
XML
<Window x:Class="TestWindow.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="MainWindow" Height="350" Width="525">
    <Grid>

        <ScrollViewer VerticalScrollBarVisibility="Visible" 
                      HorizontalScrollBarVisibility="Visible">
              
              <Canvas Visibility="{Binding EnableEdit, Converter={StaticResource BoolToVis}}" 
                      Background="AliceBlue" 
                      Canvas.Left="208" 
                      Canvas.Top="174" 
                      Height="500"  <!-- this value must be greater than the window height -->
                      Width="700"   <!-- and this must be greater than the window width -->
                      Name="canvasEdit" >   
                      
                 <ItemsControl x:Name="itemsControl" 
                               Canvas.Left="{Binding SetPosition}" 
                               ItemsSource="{Binding Test}"/>
              </Canvas>
        </ScrollViewer>
    </Grid>
</Window>

GeneralRe: Scroll Bar is not showing Pin
Ashfaque Hussain19-Nov-13 2:30
Ashfaque Hussain19-Nov-13 2:30 
GeneralRe: Scroll Bar is not showing Pin
t2b19-Nov-13 19:57
t2b19-Nov-13 19:57 
QuestionDisplaying border after adding Opacity mask for the image Pin
gourav852412-Nov-13 20:31
gourav852412-Nov-13 20:31 
AnswerRe: Displaying border after adding Opacity mask for the image Pin
RedDk16-Nov-13 11:00
RedDk16-Nov-13 11:00 
QuestionCombobox data wont update WPF MVVM Pin
LiquidHolic12-Nov-13 16:18
LiquidHolic12-Nov-13 16:18 
AnswerRe: Combobox data wont update WPF MVVM Pin
karthikeyal8712-Nov-13 22:58
karthikeyal8712-Nov-13 22:58 
GeneralRe: Combobox data wont update WPF MVVM Pin
LiquidHolic13-Nov-13 2:09
LiquidHolic13-Nov-13 2:09 
GeneralRe: Combobox data wont update WPF MVVM Pin
SledgeHammer0113-Nov-13 4:53
SledgeHammer0113-Nov-13 4:53 
GeneralRe: Combobox data wont update WPF MVVM Pin
LiquidHolic13-Nov-13 13:42
LiquidHolic13-Nov-13 13:42 
GeneralRe: Combobox data wont update WPF MVVM Pin
SledgeHammer0113-Nov-13 15:32
SledgeHammer0113-Nov-13 15:32 
GeneralRe: Combobox data wont update WPF MVVM Pin
LiquidHolic13-Nov-13 18:47
LiquidHolic13-Nov-13 18:47 
GeneralRe: Combobox data wont update WPF MVVM Pin
SledgeHammer0114-Nov-13 10:16
SledgeHammer0114-Nov-13 10:16 
GeneralRe: Combobox data wont update WPF MVVM Pin
LiquidHolic14-Nov-13 14:25
LiquidHolic14-Nov-13 14:25 
GeneralRe: Combobox data wont update WPF MVVM Pin
Pete O'Hanlon14-Nov-13 19:38
subeditorPete O'Hanlon14-Nov-13 19:38 
GeneralRe: Combobox data wont update WPF MVVM Pin
LiquidHolic14-Nov-13 19:54
LiquidHolic14-Nov-13 19:54 
AnswerRe: Combobox data wont update WPF MVVM Pin
w1sph1-Dec-13 22:45
w1sph1-Dec-13 22:45 
QuestionWPF ClickOnce eploy Question Pin
Kevin Marois7-Nov-13 4:57
professionalKevin Marois7-Nov-13 4:57 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.