更新:私の回答とH.B.の回答の両方の組み合わせが必要です。あなたは携帯電話のアプリケーションフレームをスタイリングしているので、HBさんのコメントから、「それが適用されているコントロールは、」かなりそうである下記FindChildのバージョンを使用し、
var grid = FindChild<Grid>(Application.Current.RootVisual, "audioPanel");
見えるようにFindChildにお電話を変更RootVisual(これには例外があるかもしれませんが、わかりません)。
また、私はpastebinのApp.xamlの "..."部分にContentPresenterがあると仮定しています。そうしないと、あなたのスタイルがうまくいかないと思います。
ENDのUPDATE
あなたは(WPF ways to find controls)にリンクされ、あなたの「audioPanel」グリッドは、別のグリッドの内部にネストされた問題の受け入れ答えを使用している場合、あなたはまだそれを見つけることができません - がありますそのコードに誤りがあります。ここではコントロールがネストされている場合でも動作します更新されたバージョンです:
public static T FindChild<T>(DependencyObject parent, string childName)
where T : DependencyObject
{
// Confirm parent and childName are valid.
if (parent == null)
{
return null;
}
T foundChild = null;
int childrenCount = VisualTreeHelper.GetChildrenCount(parent);
for (int i = 0; i < childrenCount; i++)
{
DependencyObject child = VisualTreeHelper.GetChild(parent, i);
// If the child is not of the request child type child
var childType = child as T;
if (childType == null)
{
// recursively drill down the tree
foundChild = FindChild<T>(child, childName);
// If the child is found, break so we do not overwrite the found child.
if (foundChild != null)
{
break;
}
}
else if (!string.IsNullOrEmpty(childName))
{
var frameworkElement = child as FrameworkElement;
// If the child's name is set for search
if (frameworkElement != null && frameworkElement.Name == childName)
{
// if the child's name is of the request name
foundChild = (T) child;
break;
}
// Need this in case the element we want is nested
// in another element of the same type
foundChild = FindChild<T>(child, childName);
}
else
{
// child element found.
foundChild = (T) child;
break;
}
}
return foundChild;
}
}
なぜapp.xamlに 'Grid'がありますか? – AnthonyWJones
私はすべてのページに表示されるオーディオパネルを持っています。 – SevenDays