Click here to Skip to main content
15,892,161 members
Home / Discussions / WPF
   

WPF

 
AnswerRe: folder tree in silverlight Pin
Abhinav S14-Jun-10 22:34
Abhinav S14-Jun-10 22:34 
QuestionI need to diplay an image in silverlight image tag while combobox selceted item. Pin
Ch.Gayatri Subudhi13-Jun-10 18:31
Ch.Gayatri Subudhi13-Jun-10 18:31 
GeneralRe: I need to display an image in silverlight image tag while combobox selected item. Pin
Arun Jacob13-Jun-10 19:01
Arun Jacob13-Jun-10 19:01 
GeneralRe: I need to display an image in silverlight image tag while combobox selected item. Pin
Ch.Gayatri Subudhi13-Jun-10 19:18
Ch.Gayatri Subudhi13-Jun-10 19:18 
AnswerRe: I need to display an image in silverlight image tag while combobox selected item. Pin
Arun Jacob13-Jun-10 19:55
Arun Jacob13-Jun-10 19:55 
QuestionTemplate Pin
MrMcIntyre13-Jun-10 4:19
MrMcIntyre13-Jun-10 4:19 
QuestionNon Rectangular Window in WPF Help Pin
snouto13-Jun-10 0:22
snouto13-Jun-10 0:22 
AnswerRe: Non Rectangular Window in WPF Help Pin
Insincere Dave13-Jun-10 11:43
Insincere Dave13-Jun-10 11:43 
You need a ContentPresenter in your ControlTemplate and set the TargetType of the ControlTemplate too.

<Window.Template>
    <ControlTemplate TargetType="{x:Type Window}">
        <Grid>
            <Rectangle Stroke="Black" RadiusX="97.5" RadiusY="97.5" >
                <Rectangle.Fill>
                    <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
                        <GradientStop Color="Black" Offset="0"/>
                        <GradientStop Color="White" Offset="1"/>
                    </LinearGradientBrush>
                </Rectangle.Fill>
            </Rectangle>
            <ContentPresenter />
        </Grid>
    </ControlTemplate>
</Window.Template>

QuestionWPF Databinding Pin
Mojo2400NV12-Jun-10 1:38
Mojo2400NV12-Jun-10 1:38 
AnswerRe: WPF Databinding Pin
Pete O'Hanlon13-Jun-10 12:14
mvePete O'Hanlon13-Jun-10 12:14 
Questionhow to associate *.chm file to '?' button in WPF Pin
SRKSHOME11-Jun-10 4:39
SRKSHOME11-Jun-10 4:39 
QuestionWhite Board using silverlight and Flash Pin
11229410-Jun-10 23:20
11229410-Jun-10 23:20 
AnswerRe: White Board using silverlight and Flash Pin
Abhinav S12-Jun-10 7:42
Abhinav S12-Jun-10 7:42 
QuestionHow to Enable the browser's back and forward buttons at run time for silverlight application Pin
Ch.Gayatri Subudhi9-Jun-10 18:37
Ch.Gayatri Subudhi9-Jun-10 18:37 
AnswerRe: How to Enable the browser's back and forward buttons at run time for silverlight application Pin
Abhinav S9-Jun-10 18:46
Abhinav S9-Jun-10 18:46 
GeneralRe: How to Enable the browser's back and forward buttons at run time for silverlight application Pin
Ch.Gayatri Subudhi9-Jun-10 22:50
Ch.Gayatri Subudhi9-Jun-10 22:50 
AnswerRe: How to Enable the browser's back and forward buttons at run time for silverlight application Pin
Abhinav S10-Jun-10 0:55
Abhinav S10-Jun-10 0:55 
GeneralRe: How to Enable the browser's back and forward buttons at run time for silverlight application Pin
#realJSOP10-Jun-10 1:31
mve#realJSOP10-Jun-10 1:31 
QuestionConvert Icon to BitmapImage shows black border around image. Pin
DavidCinadr9-Jun-10 9:59
DavidCinadr9-Jun-10 9:59 
AnswerRe: Convert Icon to BitmapImage shows black border around image. Pin
Pete O'Hanlon9-Jun-10 13:09
mvePete O'Hanlon9-Jun-10 13:09 
AnswerRe: Convert Icon to BitmapImage shows black border around image. Pin
DavidCinadr9-Jun-10 13:16
DavidCinadr9-Jun-10 13:16 
QuestionCombo boxes Pin
Lutosław8-Jun-10 5:15
Lutosław8-Jun-10 5:15 
AnswerRe: Combo boxes Pin
AspDotNetDev8-Jun-10 15:51
protectorAspDotNetDev8-Jun-10 15:51 
AnswerRe: Combo boxes Pin
#realJSOP9-Jun-10 2:56
mve#realJSOP9-Jun-10 2:56 
NewsPack Pin
Lutosław11-Jun-10 13:53
Lutosław11-Jun-10 13:53 

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.