Click here to Skip to main content
15,920,508 members
Home / Discussions / WPF
   

WPF

 
AnswerRe: Saving a image of WPF form Pin
Mark Salsbery2-Sep-08 10:48
Mark Salsbery2-Sep-08 10:48 
QuestionHow to add the custom control in tool box using wpf Pin
bruze2-Sep-08 5:23
bruze2-Sep-08 5:23 
QuestionPassing objects by ref in WPF Pin
copiloto2-Sep-08 4:45
copiloto2-Sep-08 4:45 
QuestionHow to Create Toolbox and Properybox using WPF(C sharp) Pin
bruze2-Sep-08 3:41
bruze2-Sep-08 3:41 
AnswerRe: How to Create Toolbox and Properybox using WPF(C sharp) Pin
Pete O'Hanlon2-Sep-08 4:00
mvePete O'Hanlon2-Sep-08 4:00 
Question[Message Deleted] Pin
bruze2-Sep-08 2:13
bruze2-Sep-08 2:13 
GeneralRe: How to create ToolBox ,Property box using WPF Pin
Pete O'Hanlon2-Sep-08 3:07
mvePete O'Hanlon2-Sep-08 3:07 
QuestionStackpanel visibility problem?? Pin
Dotnetkanna1-Sep-08 20:18
Dotnetkanna1-Sep-08 20:18 
Hi,
Im using WPF for designing the form.im having a dockpanel in the dockpanel i have splited into two regions by using the following code

<Border Height="50" x:Uid="Left" CornerRadius="0,0,40,40" Background="#81a4d1" BorderBrush="#4D6C82" BorderThickness="1" DockPanel.Dock="left">
</Border>


<Border Width="200" x:Uid="Right" Background="#b2ccec" BorderBrush="#4D6C82" BorderThickness="1" DockPanel.Dock="right">
</Border>

Then im having two buttons namely Client and Product in the left border and im having two stack panel with some controls related to client and product.now if im clicking client button means the client information related stackpanel should be visible and if i click product button means the product related stackpanel should be visible, how can i achieve this?

i have tried the below code but its getting hidden but the alternate panel is not getting visible..
private void BtnClient_Click(object sender, RoutedEventArgs e)
{
StkClient.Visibility = Visibility.Visible;
StkProduct.Visibility = Visibility.Hidden;
}
private void BtnProduct_Click(object sender, RoutedEventArgs e)
{
StkProduct.Visibility = Visibility.Visible;
StkClient.Visibility = Visibility.Hidden;
}

Rgrds
Kanna
QuestionCalling Dot Net 2 Webservice In Silverlight Pin
fasih19811-Sep-08 17:42
fasih19811-Sep-08 17:42 
QuestionWPF modularity question(s) -- hot swapping Pin
chaiguy13371-Sep-08 10:45
chaiguy13371-Sep-08 10:45 
AnswerRe: WPF modularity question(s) -- hot swapping Pin
Pete O'Hanlon1-Sep-08 10:57
mvePete O'Hanlon1-Sep-08 10:57 
GeneralRe: WPF modularity question(s) -- hot swapping Pin
chaiguy13371-Sep-08 11:00
chaiguy13371-Sep-08 11:00 
GeneralRe: WPF modularity question(s) -- hot swapping Pin
Pete O'Hanlon1-Sep-08 11:02
mvePete O'Hanlon1-Sep-08 11:02 
GeneralRe: WPF modularity question(s) -- hot swapping Pin
chaiguy13371-Sep-08 11:05
chaiguy13371-Sep-08 11:05 
GeneralRe: WPF modularity question(s) -- hot swapping Pin
Pete O'Hanlon1-Sep-08 11:10
mvePete O'Hanlon1-Sep-08 11:10 
GeneralRe: WPF modularity question(s) -- hot swapping Pin
chaiguy13371-Sep-08 11:21
chaiguy13371-Sep-08 11:21 
GeneralRe: WPF modularity question(s) -- hot swapping Pin
Pete O'Hanlon1-Sep-08 22:11
mvePete O'Hanlon1-Sep-08 22:11 
GeneralRe: WPF modularity question(s) -- hot swapping Pin
chaiguy13372-Sep-08 5:00
chaiguy13372-Sep-08 5:00 
Questionbasics of silverlight Pin
sri.net1-Sep-08 1:37
sri.net1-Sep-08 1:37 
AnswerRe: basics of silverlight Pin
Perspx1-Sep-08 2:50
Perspx1-Sep-08 2:50 
QuestionCalling Old Class Library in Silverlight Application. Pin
fasih19811-Sep-08 1:04
fasih19811-Sep-08 1:04 
AnswerRe: Calling Old Class Library in Silverlight Application. Pin
lneir12-Nov-08 19:03
lneir12-Nov-08 19:03 
QuestionHow to validate textboxes(i.e numeric,alphabet,email etc.) Pin
Nirav_Vyas31-Aug-08 20:42
Nirav_Vyas31-Aug-08 20:42 
AnswerRe: How to validate textboxes(i.e numeric,alphabet,email etc.) Pin
Syed Mehroz Alam1-Sep-08 1:21
Syed Mehroz Alam1-Sep-08 1:21 
QuestionXAML Power Toys Released Pin
User 27100931-Aug-08 16:14
User 27100931-Aug-08 16:14 

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.