Users Pricing

forum

Home Forums Access a UserControl from code in WPF app – MindStick

Access a UserControl from code in WPF app

Jayden Bell 2824 16 Dec 2013

I have a created a usercontrol in my wpf application. I have used it like so:

<Page x:Class="InstallerToolkit.Pages.PageVideosNvr"
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  xmlns:my="clr-namespace:MyProject.UserControls"
  mc:Ignorable="d"
  d:DesignHeight="525" d:DesignWidth="1050"
Title="PageVideos">
  <Grid>
        <my:UserControlVideoPlayer Name="VideoPlayer" Margin="559,74,35,155">
    </my:UserControlVideoPlayer>
</Grid>

Now in my C# page I want to access it but the VideoPlayer object doesnt appear when I type its name in the code behind c# page.

What  I do to access it as I want to set one of its properties.

1 Answers

Markdown for AI

A clean, structured version of this page for AI assistants and LLMs.

Open .md